Sha256: ed924b995d6ef116094b8ab85ee323841f0d3bd8442dc852d7fca391fe882657

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

require 'rails_helper'

module Pwb
  RSpec.describe FieldKey, type: :model do
    before(:each) do
      FieldKey.destroy_all
      @fk1 = FactoryGirl.create(
        :pwb_field_key,
        global_key: "propertyStates.nuevo",
        tag: "property-states",
        visible: "true"
      )
    end

    describe 'get_options_by_tag' do
      it 'should return correct number of options' do
        ps_opts = FieldKey.get_options_by_tag "property-states"
        # byebug
        expect(ps_opts.count).to eq(1)
      end
    end


    # it "should only return properties with correct number of bedrooms" do
    #   expect(Prop.count_bedrooms(3)).to eq([@five_bedroom])
    #   # Prop.count_bedrooms(3).should == [@five_bedroom]
    # end
  end

  # it 'is valid with uppercase country code' do
  #   field_key = Pwb::FieldKey.new(
  #     country_code: 'AT',
  #     field_key_code: 'de',
  #     name: 'Österreich',
  #     frontpage_name: 'Start',
  #     page_layout: 'index',
  #     site: build(:alchemy_site)
  #   )
  #   expect(field_key).to be_valid
  # end

  # it "should return a label for code" do
  #   expect(field_key.label(:code)).to eq('kl')
  # end

  # describe '.table_name' do
  #   it "should return table name" do
  #     tk = FieldKey.get_options_by_tag "property-types"
  #     byebug
  #     expect(FieldKey.table_name).to eq('pwb_field_keys')
  #   end
  # end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pwb-1.4.0 spec/models/pwb/field_key_spec.rb
pwb-1.3.0 spec/models/pwb/field_key_spec.rb
pwb-1.2.0 spec/models/pwb/field_key_spec.rb
pwb-1.1.1 spec/models/pwb/field_key_spec.rb
pwb-1.0.0 spec/models/pwb/field_key_spec.rb