module MIPSUnit::MSpec

MSpec is an RSpec-inspired unit testing framework for MIPS assembly. MSpec takes RSpec-like spec files as input and generates an assembly file containing unit tests.

Author

Zachary Kurmas

Copyright

Copyright © 2012

Constants

VERSION

Public Class Methods

global() click to toggle source

return the singleton Global object. Create a new Global object if necessary.

# File lib/mipsunit/mspec.rb, line 19
def self.global
  @global ||= Global.new
end
reset() click to toggle source
# File lib/mipsunit/mspec.rb, line 14
def self.reset
  @global = nil
end