Sha256: 57ccb48d4c70b9b64281d62e3e29981a7571bbe7f79a2e6eb96aa3c3969e05e3

Contents?: true

Size: 423 Bytes

Versions: 6

Compression:

Stored size: 423 Bytes

Contents

require File.join(File.dirname(__FILE__), 'test_helper')

describe "RunnerLibrary" do
  before { reset }

  it "creates a library with correct commands" do
    Manager.load create_runner(:blah)
    library('blarg').commands.should == ['blah']
  end

  it "can coexist with another runner library" do
    Manager.load create_runner(:blah)
    should_not_raise { Manager.load create_runner(:blih, library: :Blih) }
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
boson-1.3.0 test/runner_library_test.rb
boson-1.2.4 test/runner_library_test.rb
boson-1.2.3 test/runner_library_test.rb
boson-1.2.2 test/runner_library_test.rb
boson-1.2.1 test/runner_library_test.rb
boson-1.2.0 test/runner_library_test.rb