01: // Modified or written by Object Mentor, Inc. for inclusion with FitNesse.
02: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
03: // Released under the terms of the GNU General Public License version 2 or later.
04: package fit;
05:
06: public class RubyFitServerTest extends FitServerTest {
07: protected String command() {
08: return "ruby ruby/bin/FitServer.rb -v";
09: }
10:
11: protected String simpleTable(String fixtureName) {
12: return "<table>" + "<tr><td>fat." + fixtureName + "</td></tr>"
13: + "</table>";
14: }
15:
16: public void testBadConnection() throws Exception {
17: super.testBadConnection();
18: }
19: }
|