spec/extensions/query_literals_spec.rb in sequel-3.46.0 vs spec/extensions/query_literals_spec.rb in sequel-3.47.0
- old
+ new
@@ -32,10 +32,10 @@
it "should have #select_more use literal string if given a single string" do
@ds.select_more('a, b, c').sql.should == 'SELECT d, a, b, c FROM t'
end
- it "should have #select_ use placeholder literal string if given a string and additional arguments" do
+ it "should have #select_more use placeholder literal string if given a string and additional arguments" do
@ds.select_more('a, b, ?', 1).sql.should == 'SELECT d, a, b, 1 FROM t'
end
it "should have #select_more work the standard way if initial string is a literal string already" do
@ds.select_more(Sequel.lit('a, b, ?'), 1).sql.should == 'SELECT d, a, b, ?, 1 FROM t'