Sha256: 3a93311010d14480d10e3b07ea379fdeba37815668240d9d058654f53cb58752

Contents?: true

Size: 403 Bytes

Versions: 5

Compression:

Stored size: 403 Bytes

Contents

Given(/^the Trello API is stubbed with "(.*?)"$/) do |stub|
  VCR.insert_cassette(stub, allow_playback_repeats: true)
end

Then(/^the output should be the version number of troo$/) do
  !!(all_output.match(/#{Troo::VERSION}/))
end

Before do
  config = Troo::Configuration.load('config/trooconf.yml', 'test')
  Ohm.connect(db: config.database)
end

After do
  Ohm.redis.flushdb
  VCR.eject_cassette
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
troo-0.0.15 features/step_definitions/troo_steps.rb
troo-0.0.14 features/step_definitions/troo_steps.rb
troo-0.0.13 features/step_definitions/troo_steps.rb
troo-0.0.12 features/step_definitions/troo_steps.rb
troo-0.0.11 features/step_definitions/troo_steps.rb