Guest User

Untitled

a guest
Jul 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. describe "Ruby books", :ruby_books do
  2. create_a :book
  3. .named :rspec
  4. .title "The RSpec Book: Behaviour Driven Development with Rspec, Cucumber, and Friends"
  5. .cost 21.75
  6.  
  7. create_a :book
  8. .named :programming_ruby
  9. .title "Programming Ruby 1.9: The Pragmatic Programmers' Guide"
  10. .cost 21.10
  11. end
  12.  
  13. describe "A ruby enthusiast", :ruby_enthusiast do
  14. uses :ruby_books
  15.  
  16. create_a :person
  17. .named :yukihiro_matsumoto
  18. .aged 45
  19. .has_bought :rspec
  20. .has_bought :programming_ruby
  21. end
Add Comment
Please, Sign In to add comment