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