module('Addition', function() {
  test('adds two numbers', function(_, assert) {
    assert(1 + 1 == 2)
  });
});
