Sha256: 6996c220a3305bb82452bceed8a48abaf75023324042afa2edb79ba53d9c9141
Contents?: true
Size: 396 Bytes
Versions: 2
Compression:
Stored size: 396 Bytes
Contents
require 'spec_helper' require 'ronin/sql/sql' describe SQL do subject { Object.new.extend(described_class) } describe "#sql" do it "should return a new SQL::StatementList" do subject.sql.should be_kind_of(SQL::StatementList) end end describe "#sqli" do it "should return a new SQL::Injection" do subject.sqli.should be_kind_of(SQL::Injection) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ronin-sql-1.1.0 | spec/sql/sql_spec.rb |
ronin-sql-1.0.0 | spec/sql/sql_spec.rb |