Sha256: 43a05870223108f5ce55b3a8980c139c62196c8fc77cfdfc712a9fa72c5d70f9

Contents?: true

Size: 1.46 KB

Versions: 5

Compression:

Stored size: 1.46 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

describe ActiveEnum::ActsAsEnum do
  class Person < ActiveRecord::Base
    acts_as_enum :name_column => 'first_name'
  end

  class TestPerson < ActiveRecord::Base
    def self.extended_modules
      class << self
        self.included_modules
      end
    end
  end

  before(:all) do
    Person.create!(:first_name => 'Dave', :last_name => 'Smith')
    Person.create!(:first_name => 'John', :last_name => 'Doe')
  end

  it "should mixin enum class methods only when act_as_enum defined" do
    TestPerson.extended_modules.should_not include(ActiveEnum::ActsAsEnum::ClassMethods)
    TestPerson.acts_as_enum
    TestPerson.extended_modules.should include(ActiveEnum::ActsAsEnum::ClassMethods)
  end

  it "should return name column value when passing id to [] method" do
    Person[1].should == 'Dave'
  end

  it "should return id column value when passing string name to [] method" do
    Person['Dave'].should == 1
    Person['dave'].should == 1
  end

  it "should return id column value when passing symbol name to [] method" do
    Person[:dave].should == 1
  end

  it "should return array for select helpers from to_select" do
    Person.to_select.should == [['Dave', 1], ['John', 2]]
  end

  it "should return sorted array from order value for select helpers from to_select" do
    Person.acts_as_enum :name_column => 'first_name', :order => :desc
    Person.to_select.should == [['John', 2], ['Dave', 1]]
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_enum-0.9.6 spec/active_enum/acts_as_enum_spec.rb
active_enum-0.9.5 spec/active_enum/acts_as_enum_spec.rb
active_enum-0.9.4 spec/active_enum/acts_as_enum_spec.rb
active_enum-0.9.3 spec/active_enum/acts_as_enum_spec.rb
active_enum-0.9.1 spec/active_enum/acts_as_enum_spec.rb