Activity
How in the world of all things RSpec would you recreate
class FakeEnv
attr_reader(:user)
def initialize(user)
@user = user
end
end
With RSpec's DSL?
How in the world of all things RSpec would you recreate
class FakeEnv
attr_reader(:user)
def initialize(user)
@user = user
end
end
With RSpec's DSL?