File: core_spec.rb

package info (click to toggle)
ruby-vagrant-cloud 3.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: ruby: 4,343; makefile: 7
file content (10 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
require "spec_helper"
require "vagrant_cloud"

describe VagrantCloud::Instrumentor::Core do
  context "#instrument" do
    it "should raise NotImplementedError" do
      expect { subject.instrument }.to raise_error(NotImplementedError)
    end
  end
end