Sha256: f28999253fa0790f1d37542aa1ad80fa149010ef3bac1b78c686c97ec89897a2
Contents?: true
Size: 434 Bytes
Versions: 4
Compression:
Stored size: 434 Bytes
Contents
# encoding: utf-8 describe QueryBuilder::CQL::Operators, ".cql_lt" do it_behaves_like :transforming_immutable_data do let(:arguments) { [:cql_lt, 4] } let(:input) { :foo } let(:output) { "foo < 4" } end it_behaves_like :transforming_immutable_data do let(:arguments) { [:cql_lt, :bar] } let(:input) { :foo } let(:output) { "foo < 'bar'" } end end # describe QueryBuilder::CQL::Operators.cql_lt
Version data entries
4 entries across 4 versions & 1 rubygems