Enhancements - modifier cleanup

- Removed obsolete modifiers
- Added above/below
This commit is contained in:
Paul Beckingham 2009-06-12 21:23:15 -04:00
parent bd0309b4ff
commit 6ac8bdc5ca
2 changed files with 18 additions and 16 deletions

View file

@ -115,12 +115,12 @@ int main (int argc, char** argv)
t.ok (good, "Att::mod (under)");
good = true;
try {a6.mod ("first");} catch (...) {good = false;}
t.ok (good, "Att::mod (first)");
try {a6.mod ("above");} catch (...) {good = false;}
t.ok (good, "Att::mod (above)");
good = true;
try {a6.mod ("last");} catch (...) {good = false;}
t.ok (good, "Att::mod (last)");
try {a6.mod ("below");} catch (...) {good = false;}
t.ok (good, "Att::mod (below)");
good = true;
try {a6.mod ("isnt");} catch (...) {good = false;}