Module: Bake::Test::Runner

Defined in:
lib/bake/test/runner.rb

Class Method Summary collapse

Class Method Details

.minitest(root) ⇒ Object



17
18
19
# File 'lib/bake/test/runner.rb', line 17

def self.minitest(root)
	system("bundle", "exec", "minitest", chdir: root)
end

.rake(root) ⇒ Object



21
22
23
# File 'lib/bake/test/runner.rb', line 21

def self.rake(root)
	system("bundle", "exec", "rake", "test", chdir: root)
end

.rspec(root) ⇒ Object



9
10
11
# File 'lib/bake/test/runner.rb', line 9

def self.rspec(root)
	system("bundle", "exec", "rspec", chdir: root)
end

.sus(root) ⇒ Object



13
14
15
# File 'lib/bake/test/runner.rb', line 13

def self.sus(root)
	system("bundle", "exec", "sus", chdir: root)
end