Sha256: e79fcf2a6ee42537529ff9af1db20a99cf9037531e9d695e03a29193b98ea2d6
Contents?: true
Size: 666 Bytes
Versions: 21
Compression:
Stored size: 666 Bytes
Contents
require File.dirname(__FILE__) + '/spec_helper' describe Pickle do it ".config should be same object on multiple calls" do Pickle.config.should == Pickle.config end it ".configure should configure the .config object" do Pickle.config.should_receive(:foo).with(:bar) Pickle.configure do |c| c.foo :bar end end it ".parser should create a parser with the default config" do Pickle.instance_variable_set('@parser', nil) Pickle::Parser.should_receive(:new).with(:config => Pickle.config) Pickle.parser end it ".parser should be same object on multiple calls" do Pickle.parser.should == Pickle.parser end end
Version data entries
21 entries across 21 versions & 3 rubygems