spec/cql_sql_spec.rb in activefacts-0.6.0 vs spec/cql_sql_spec.rb in activefacts-0.7.0
- old
+ new
@@ -15,18 +15,19 @@
describe "CQL Loader with SQL output" do
CQL_SQL_FAILURES = %w{
Airline
CompanyQuery
Insurance
+ Marriage
OrienteeringER
ServiceDirector
SimplestUnary
}
# Generate and return the SQL for the given vocabulary
def sql(vocabulary)
output = StringIO.new
- @dumper = ActiveFacts::Generate::SQL::SERVER.new(vocabulary.constellation)
+ @dumper = ActiveFacts::Generate::SQL::SERVER.new(vocabulary.constellation, "norma")
@dumper.generate(output)
output.rewind
output.read
end