Sha256: f4695b1eb4a41ddfc2f8c51db08798afbd78a0ee8af870cd3700f23a77ec573b
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
require 'spec_helper' describe ThinkingSphinx::ActiveRecord::DatabaseAdapters::MySQLAdapter do let(:adapter) { ThinkingSphinx::ActiveRecord::DatabaseAdapters::MySQLAdapter.new(model) } let(:model) { double('model') } it "returns 1 for true" do adapter.boolean_value(true).should == 1 end it "returns 0 for false" do adapter.boolean_value(false).should == 0 end describe '#cast_to_string' do it "casts the clause to characters" do adapter.cast_to_string('foo').should == "CAST(foo AS char)" end end describe '#cast_to_timestamp' do it "converts to unix timestamps" do adapter.cast_to_timestamp('created_at'). should == 'UNIX_TIMESTAMP(created_at)' end end describe '#concatenate' do it "concatenates with the given separator" do adapter.concatenate('foo, bar, baz', ','). should == "CONCAT_WS(',', foo, bar, baz)" end end describe '#convert_nulls' do it "translates arguments to an IFNULL SQL call" do adapter.convert_nulls('id', 5).should == 'IFNULL(id, 5)' end end describe '#group_concatenate' do it "group concatenates the clause with the given separator" do adapter.group_concatenate('foo', ','). should == "GROUP_CONCAT(DISTINCT foo SEPARATOR ',')" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-3.0.6 | spec/thinking_sphinx/active_record/database_adapters/mysql_adapter_spec.rb |