class CitizenCodeScripts::Test
Public Class Methods
description()
click to toggle source
# File lib/citizen_code_scripts/test.rb, line 2 def self.description "Runs all test suites for CI/pushit" end
Public Instance Methods
run()
click to toggle source
# File lib/citizen_code_scripts/test.rb, line 6 def run step "Running test suite" do rspec end end
Private Instance Methods
rspec()
click to toggle source
# File lib/citizen_code_scripts/test.rb, line 14 def rspec CitizenCodeScripts::Rspec.run end