magnus 0.8.2

High level Ruby bindings. Write Ruby extension gems in Rust, or call Ruby code from a Rust binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require "test/unit"
require_relative "../lib/ahriman"

class ErrorTest < Test::Unit::TestCase

  def test_error?
    assert_raise(Ahriman::RubricError) { Ahriman::cast_rubric }
  end

end