Sha256: d5724592a5c6bb567ad2deed173b9f56455640f4c28dfbcf4a82c99573f9d026

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

describe Rcurse::Context do
	it "initializes" do
		context = Rcurse::Context.new
		expect(context).to be_a(Rcurse::Context)
	end

	it "returns binding" do
		context = Rcurse::Context.new
		expect(context.get_binding).to be_a(Binding)
	end

	it "returns the same binding every time" do
		context = Rcurse::Context.new
		expect(context.get_binding).to eq(context.get_binding)
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rcurse-0.5.1 spec/context_spec.rb