vote up 0 vote down star

I want to be able to put preformatted text (i.e. containing line breaks) into a single cell of a FitNesse fixture table. Is there a way to manipulate the FitNesse wiki markup to do this?

flag

2 Answers

vote up 1 vote down check

Use !- -! to get multiline table cells and {{{ }}} to get preformatted text. The {{{ has to be outside the !-

For example:

|sql|
|{{{!- SELECT *
     FROM bar
     WHERE gaz = 14
-!}}}|
link|flag
Great - and more elegant than my workaround! Thanks. – Matthew Murdoch Feb 26 at 12:17
vote up 1 vote down

One way to do this is to define a variable with the multi-line text and then refer to this from the table cell:

!define sql {  SELECT *
  FROM bar
  WHERE gaz = 14
}

|sql|
|${sql}|
link|flag
This will not make the text preformatted – Johannes Brodwall Feb 25 at 21:18
Hmmm... It seems to work. However I prefer your approach - I'll give it a try. Thanks. – Matthew Murdoch Feb 26 at 12:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.