Sha256: 6aa720659121b146868942dfcb99d4741106ec07af6dc61caeed8e810dfdc6da
Contents?: true
Size: 444 Bytes
Versions: 1
Compression:
Stored size: 444 Bytes
Contents
require 'spec_helper' require 'ronin/code/sql' describe Ronin::Code::SQL do subject { Object.new.extend(described_class) } describe "#sql" do it "should return a new SQL::StatementList" do expect(subject.sql).to be_kind_of(Ronin::Code::SQL::StatementList) end end describe "#sqli" do it "should return a new SQL::Injection" do expect(subject.sqli).to be_kind_of(Ronin::Code::SQL::Injection) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ronin-code-sql-2.0.0.beta1 | spec/sql_spec.rb |