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.
describe
class
1 parent 9cca46b commit d8170f8Copy full SHA for d8170f8
test/support/init_report_test.rb
@@ -3,13 +3,13 @@
3
4
require 'minitest_helper'
5
6
-class InitReportTest < Minitest::Test
7
- def test_report_format
+describe 'InitReportTest' do
+ it 'report_format' do
8
init_kvs = ::AppOpticsAPM::Util.build_init_report
9
init_kvs.is_a?(Hash)
10
end
11
12
- def test_report_kvs
+ it 'report_kvs' do
13
14
init_kvs.has_key?("__Init").must_equal true
15
init_kvs.has_key?("Force").must_equal true
@@ -19,7 +19,7 @@ def test_report_kvs
19
20
21
# @deprecated
22
- def test_legacy_report_format
+ it 'legacy_report_format' do
23
init_kvs = ::AppOpticsAPM::Util.legacy_build_init_report
24
25
0 commit comments