Sha256: f9ec09a1f1cc5f56f4c38d1fbe455317a2e4398665db468dde2eb6c1a4c37b06
Contents?: true
Size: 301 Bytes
Versions: 22
Compression:
Stored size: 301 Bytes
Contents
require 'test_helper' class FetchCommitStatsJobTest < ActiveSupport::TestCase setup do @commit = commits(:first) @job = FetchCommitStatsJob.new end test "#perform call #fetch_stats! on the provided commit" do @commit.expects(:fetch_stats!).once @job.perform(@commit) end end
Version data entries
22 entries across 22 versions & 1 rubygems