# File test/test_wpm_messg_manip.rb, line 116
    def test_status
      assert_equal(200, @messg_manip.status)
      assert_equal(1, @header_call)
      @header['Status'] = '404 Not Found'
      assert_equal(404, @messg_manip.status)
      assert_equal(2, @header_call)
    end