Skip to content

Instantly share code, notes, and snippets.

@JonRowe

JonRowe/Gemfile Secret

Last active December 28, 2015 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JonRowe/69e6371ac83165d1bbe1 to your computer and use it in GitHub Desktop.
Save JonRowe/69e6371ac83165d1bbe1 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
gem 'rspec'
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
rspec (2.14.1)
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-core (2.14.7)
rspec-expectations (2.14.4)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.14.4)
PLATFORMS
ruby
DEPENDENCIES
rspec
MyClassThatIWantToTest2 = Class.new
describe MyClassThatIWantToTest2 do
class MyCoolClassJustForTesting
end
it "also loads this spec"
end
MyClassThatIWantToTest = Class.new
describe MyClassThatIWantToTest do
class MyCoolClassJustForTesting
end
it "loads this spec"
end
**
Pending:
MyClassThatIWantToTest2 also loads this spec
# Not yet implemented
# ./module_test_2_spec.rb:6
MyClassThatIWantToTest loads this spec
# Not yet implemented
# ./module_test_spec.rb:7
Finished in 0.00037 seconds
2 examples, 0 failures, 2 pending
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment