Sha256: 8be314fedabc47acfbd6c19df195a2ac7884fd85f9f54d3476b292e0b82ef872
Contents?: true
Size: 369 Bytes
Versions: 5
Compression:
Stored size: 369 Bytes
Contents
require 'spec_helper' module Polyamorous describe Join do it 'is a tree node' do join = new_join(:articles, :outer) expect(join).to be_kind_of(TreeNode) end it 'can be add to a tree' do join = new_join(:articles, :outer) tree_hash = {} join.add_to_tree(tree_hash) expect(tree_hash[join]).to be {} end end end
Version data entries
5 entries across 5 versions & 3 rubygems