File: new_spec.rb

package info (click to toggle)
ruby-necromancer 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: ruby: 1,578; sh: 4; makefile: 4
file content (9 lines) | stat: -rw-r--r-- 204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

RSpec.describe Necromancer, "#new" do
  subject(:converter) { described_class.new }

  it "creates context" do
    expect(converter).to be_a(Necromancer::Context)
  end
end