Sha256: f2905709defd6cef3bc1df425587e5d9197e20b84623a3d6b8d2bdfd7b0c7047

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

require File.expand_path("../test_helper", __FILE__)

class IntegerTest < AttrSearchable::TestCase
  def test_anywhere
    product = create(:product, :stock => 1)

    assert_includes Product.search("1"), product
    refute_includes Product.search("0"), product
  end

  def test_includes
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock: 1"), product
    refute_includes Product.search("stock: 10"), product
  end

  def test_equals
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock = 1"), product
    refute_includes Product.search("stock = 0"), product
  end

  def test_equals_not
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock != 0"), product
    refute_includes Product.search("stock != 1"), product
  end

  def test_greater
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock > 0"), product
    refute_includes Product.search("stock < 1"), product
  end

  def test_greater_equals
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock >= 1"), product
    refute_includes Product.search("stock >= 2"), product
  end

  def test_less
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock < 2"), product
    refute_includes Product.search("stock < 1"), product
  end

  def test_less_equals
    product = create(:product, :stock => 1)

    assert_includes Product.search("stock <= 1"), product
    refute_includes Product.search("stock <= 0"), product
  end

  def test_incompatible_datatype
    assert_raises AttrSearchable::IncompatibleDatatype do
      Product.unsafe_search "stock: Value"
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
attr_searchable-0.0.7 test/integer_test.rb
attr_searchable-0.0.6 test/integer_test.rb
attr_searchable-0.0.5 test/integer_test.rb
attr_searchable-0.0.4 test/integer_test.rb
attr_searchable-0.0.3 test/integer_test.rb
attr_searchable-0.0.2 test/integer_test.rb