Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions spec/lib/appsignal/extension_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@
it "should have a complete method" do
subject.complete
end

# This is tested explicitly because most of our tests mock this
# function's return value to ensure it's always sampled and we can test
# the sampled data
it "returns a boolean value from the transaction extension finish function" do
expect(subject.finish(0)).to eq(true).or eq(false)
end
end

it "should have a set_gauge method" do
Expand Down
Loading