Sha256: 1b3cde0a41bc40a264f6b44c62dfb8a48f4abb01dfc1eacfb1b91ec60ce89892
Contents?: true
Size: 304 Bytes
Versions: 31
Compression:
Stored size: 304 Bytes
Contents
require 'spec_helper' module Startback describe Context, "with_world" do let(:who) do Object.new end let(:context) do SubContext.new.with_world(hello: who) end it 'works as expected' do got = context.world.hello expect(got).to be(who) end end end
Version data entries
31 entries across 31 versions & 3 rubygems