Sha256: 3d8e13b6300a6d8c55017bd696ec63b0128c8bfd5c6fa99723085ce1f3d3b592
Contents?: true
Size: 1.72 KB
Versions: 3
Compression:
Stored size: 1.72 KB
Contents
require 'spec_helper' describe LinkThumbnailer::Object do it { should respond_to :valid? } let(:object) { LinkThumbnailer::Object.new } describe ".method_missing" do before do object[:foo] = 'foo' end subject { object } it { subject.foo.should eq('foo') } it { subject.foo?.should be_true } it { subject.bar.should be_nil } it { subject.bar?.should be_false } end describe ".valid" do before do LinkThumbnailer.configure {|config|} end context "when strict" do before do LinkThumbnailer.configure { |config| config.strict = true } end context "and valid" do before do LinkThumbnailer.configuration.mandatory_attributes.each { |a| object[a] = 'foo' } end subject { object } it { should be_valid } it { subject.keys.should eq(LinkThumbnailer.configuration.mandatory_attributes) } it { subject.values.should include 'foo' } end context "and not valid" do subject { object } it { should_not be_valid } it { subject.keys.should be_empty } it { subject.values.should be_empty } end end context "when not strict" do before do LinkThumbnailer.configure { |config| config.strict = false } end context "and empty" do subject { object } it { should_not be_valid } it { subject.keys.should be_empty } it { subject.values.should be_empty } end context "and not empty" do before do object[:foo] = 'foo' end subject { object } it { should be_valid } it { subject.foo.should eq('foo') } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
link_thumbnailer-0.0.6 | spec/object_spec.rb |
link_thumbnailer-0.0.5 | spec/object_spec.rb |
link_thumbnailer-0.0.4 | spec/object_spec.rb |