Sha256: e7b00bfe02f908ddb98118fb14b9e942a3796ad847b177322bb7a748d2b167f1
Contents?: true
Size: 388 Bytes
Versions: 14
Compression:
Stored size: 388 Bytes
Contents
require File.dirname(__FILE__) + '/../test_helper.rb' module ConditionTests class BeginsWithTest < ActiveSupport::TestCase def test_sanitize condition = Searchlogic::Condition::BeginsWith.new(Account, :column => Account.columns_hash["name"]) condition.value = "Binary" assert_equal ["\"accounts\".\"name\" LIKE ?", "Binary%"], condition.sanitize end end end
Version data entries
14 entries across 14 versions & 2 rubygems