Guest User

Untitled

a guest
May 27th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. shared_examples_for "databases" do
  2. describe "Database" do
  3. describe "#tables" do
  4. it "returns a list of tables in the database" do
  5. database.tables.should include("users")
  6. database.tables.should include("photos")
  7. database.tables.should include("developers")
  8. end
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment