Sha256: f55f9e575ee08114038cf1a2dc67b10849f67cd524aca86c8e290e8cd914b139

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

require 'test_helper'

class Superstore::AttributeMethodsTest < Superstore::TestCase
  test 'read and write attributes' do
    issue = Issue.new
    assert_nil issue.read_attribute(:description)

    issue.write_attribute(:description, nil)
    assert_nil issue.read_attribute(:description)

    issue.write_attribute(:description, 'foo')
    assert_equal 'foo', issue.read_attribute(:description)
  end

  test 'read primary_key' do
    refute_nil Issue.new[:id]
  end

  test 'hash accessor aliases' do
    issue = Issue.new

    issue[:description] = 'bar'

    assert_equal 'bar', issue[:description]
  end

  test 'attributes setter' do
    issue = Issue.new

    issue.attributes = {
      description: 'foo'
    }

    assert_equal 'foo', issue.description
  end

  class ChildIssue < Issue
    def title=(val)
      self[:title] = val + ' lol'
    end
  end

  test 'override' do
    issue = ChildIssue.new(title: 'hey')

    assert_equal 'hey lol', issue.title
  end

  class ReservedWord < Superstore::Base
    self.table_name = 'issues'
    string :system
  end

  test 'reserved words' do
    r = ReservedWord.new(system: 'hello')
    assert_equal 'hello', r.system
  end

  # test 'attribute_exists' do
  #   assert !Issue.new.attribute_exists?(:description)
  #   assert Issue.new(description: nil).attribute_exists?(:description)
  #   assert Issue.new(description: false).attribute_exists?(:description)
  #   assert Issue.new(description: 'hey').attribute_exists?(:description)
  # end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
superstore-2.3.0 test/unit/attribute_methods_test.rb
superstore-2.2.0 test/unit/attribute_methods_test.rb
superstore-2.1.3 test/unit/attribute_methods_test.rb
superstore-2.1.2 test/unit/attribute_methods_test.rb
superstore-2.1.1 test/unit/attribute_methods_test.rb
superstore-2.1.0 test/unit/attribute_methods_test.rb