Sha256: 7067a573fca4d07104bd2c02650bc85810ee2fc15f7303bd6d8061397fafdfcd

Contents?: true

Size: 697 Bytes

Versions: 14

Compression:

Stored size: 697 Bytes

Contents

Given /^I want to keep stuff simple$/ do
  expect(1).to eq(1)
end

When /^I write my cukes for the fake project$/ do
  expect(1).to eq(1)
end

Then /^I make all neccessary tests in a single step$/ do
  expect(FakedProject.foo).to eq('bar')

  expect(FrameworkSpecific.cucumber).to eq("Only tested in Cucumber")

  expect(FakedProject.a_class_method).to eq("this is a mixed-in class method")

  expect(FakedProject.new.an_instance_method).to eq("this is a mixed-in instance method")
  expect(FakedProject.new.dynamic).to eq("A dynamically defined instance method")

  something = SomeClass.new("foo")
  expect(something.reverse).to eq('oof')
  expect(something.compare_with('foo')).to be true
end

Version data entries

14 entries across 11 versions & 3 rubygems

Version Path
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.7 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.6 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.5 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.4 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.2 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
tdiary-5.0.1 vendor/bundle/gems/simplecov-0.9.2/test/faked_project/features/step_definitions/my_steps.rb
honeybadger-2.4.0 vendor/gems/ruby/2.2.0/gems/simplecov-0.9.0/test/faked_project/features/step_definitions/my_steps.rb
honeybadger-2.4.0 vendor/gems/ruby/2.1.0/gems/simplecov-0.9.0/test/faked_project/features/step_definitions/my_steps.rb
honeybadger-2.4.0 vendor/gems/ruby/1.9.1/gems/simplecov-0.9.0/test/faked_project/features/step_definitions/my_steps.rb
simplecov-0.9.2 test/faked_project/features/step_definitions/my_steps.rb
simplecov-0.9.1 test/faked_project/features/step_definitions/my_steps.rb
simplecov-0.9.0 test/faked_project/features/step_definitions/my_steps.rb