Sha256: e4c368511ef0252ecfd4df813539951355e4f05a3d255b5c4eb5cfabf01e753b
Contents?: true
Size: 264 Bytes
Versions: 3
Compression:
Stored size: 264 Bytes
Contents
require 'spec_helper' describe AQL::Node::Operation::Binary::Let, '#aql' do let(:left) { AQL::Node::Name.new('foo') } let(:right) { AQL::Node::Literal.build('bar') } let(:object) { described_class.new(left, right) } expect_aql('LET `foo` = "bar"') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
aql-0.0.3 | spec/unit/aql/node/operation/binary/let/aql_spec.rb |
aql-0.0.2 | spec/unit/aql/node/operation/binary/let/aql_spec.rb |
aql-0.0.1 | spec/unit/aql/node/operation/binary/let/aql_spec.rb |