Sha256: 94fc6582ec091a633573b2febb42cf3bbaa5315ea04820beee734e58920f38b6

Contents?: true

Size: 445 Bytes

Versions: 28

Compression:

Stored size: 445 Bytes

Contents

require 'spec_helper'
require 'sugar-high/blank'

describe "SugarHigh" do
  describe "Blank ext" do
    describe '#blank' do    
      it "nil and empty string should be blank" do
        nil.blank?.should be_true
        ''.blank?.should be_true
      end
    end
    
    describe '#empty' do    
      it "nil and empty string should be empty" do
        nil.empty?.should be_true
        ''.empty?.should be_true
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
sugar-high-0.4.6 spec/sugar-high/blank_spec.rb
sugar-high-0.4.5.2 spec/sugar-high/blank_spec.rb
sugar-high-0.4.5 spec/sugar-high/blank_spec.rb
sugar-high-0.4.4.2 spec/sugar-high/blank_spec.rb
sugar-high-0.4.4.1 spec/sugar-high/blank_spec.rb
sugar-high-0.4.4 spec/sugar-high/blank_spec.rb
sugar-high-0.4.3 spec/sugar-high/blank_spec.rb
sugar-high-0.4.0 spec/sugar-high/blank_spec.rb