Skip to content

Instantly share code, notes, and snippets.

@net
Created February 8, 2019 20:50
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 net/3735acc5c93b43e46e32cb68f22cf0fa to your computer and use it in GitHub Desktop.
Save net/3735acc5c93b43e46e32cb68f22cf0fa to your computer and use it in GitHub Desktop.
describe do
let(:lower) { "foo" }
let(:upper) { lower.upcase }
describe do
let(:lower) { "bar" }
it do
expect(upper).to eq("BAR")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment