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