We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8e91b commit f7b5af4Copy full SHA for f7b5af4
spec/mysql2/client_spec.rb
@@ -81,11 +81,13 @@ def connect *args
81
results = ssl_client.query("SHOW STATUS WHERE Variable_name = \"Ssl_version\" OR Variable_name = \"Ssl_cipher\"").to_a
82
results[0]['Variable_name'].should eql('Ssl_cipher')
83
results[0]['Value'].should_not be_nil
84
- results[0]['Value'].class.should eql(String)
+ results[0]['Value'].should be_kind_of(String)
85
+ results[0]['Value'].should_not be_empty
86
87
results[1]['Variable_name'].should eql('Ssl_version')
88
results[1]['Value'].should_not be_nil
- results[1]['Value'].class.should eql(String)
89
+ results[1]['Value'].should be_kind_of(String)
90
+ results[1]['Value'].should_not be_empty
91
end
92
93
it "should respond to #close" do
0 commit comments