1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
|
\unset ECHO
1..1013
ok 1 - has_tablespace(non-existent tablespace) should fail
ok 2 - has_tablespace(non-existent tablespace) should have the proper description
ok 3 - has_tablespace(non-existent tablespace) should have the proper diagnostics
ok 4 - has_tablespace(non-existent tablespace, tab) should fail
ok 5 - has_tablespace(non-existent tablespace, tab) should have the proper description
ok 6 - has_tablespace(non-existent tablespace, tab) should have the proper diagnostics
ok 7 - has_tablespace(tablespace) should pass
ok 8 - has_tablespace(tablespace) should have the proper description
ok 9 - has_tablespace(tablespace) should have the proper diagnostics
ok 10 - has_tablespace(tablespace, desc) should pass
ok 11 - has_tablespace(tablespace, desc) should have the proper description
ok 12 - has_tablespace(tablespace, desc) should have the proper diagnostics
ok 13 - hasnt_tablespace(non-existent tablespace) should pass
ok 14 - hasnt_tablespace(non-existent tablespace) should have the proper description
ok 15 - hasnt_tablespace(non-existent tablespace) should have the proper diagnostics
ok 16 - hasnt_tablespace(non-existent tablespace, tab) should pass
ok 17 - hasnt_tablespace(non-existent tablespace, tab) should have the proper description
ok 18 - hasnt_tablespace(non-existent tablespace, tab) should have the proper diagnostics
ok 19 - hasnt_tablespace(pg_default) should fail
ok 20 - hasnt_tablespace(pg_default) should have the proper description
ok 21 - hasnt_tablespace(pg_default) should have the proper diagnostics
ok 22 - hasnt_tablespace(tablespace, desc) should fail
ok 23 - hasnt_tablespace(tablespace, desc) should have the proper description
ok 24 - hasnt_tablespace(tablespace, desc) should have the proper diagnostics
ok 25 - has_schema(non-existent schema) should fail
ok 26 - has_schema(non-existent schema) should have the proper description
ok 27 - has_schema(non-existent schema) should have the proper diagnostics
ok 28 - has_schema(non-existent schema, tab) should fail
ok 29 - has_schema(non-existent schema, tab) should have the proper description
ok 30 - has_schema(non-existent schema, tab) should have the proper diagnostics
ok 31 - has_schema(schema) should pass
ok 32 - has_schema(schema) should have the proper description
ok 33 - has_schema(schema) should have the proper diagnostics
ok 34 - has_schema(schema, desc) should pass
ok 35 - has_schema(schema, desc) should have the proper description
ok 36 - has_schema(schema, desc) should have the proper diagnostics
ok 37 - hasnt_schema(non-existent schema) should pass
ok 38 - hasnt_schema(non-existent schema) should have the proper description
ok 39 - hasnt_schema(non-existent schema) should have the proper diagnostics
ok 40 - hasnt_schema(non-existent schema, tab) should pass
ok 41 - hasnt_schema(non-existent schema, tab) should have the proper description
ok 42 - hasnt_schema(non-existent schema, tab) should have the proper diagnostics
ok 43 - hasnt_schema(schema) should fail
ok 44 - hasnt_schema(schema) should have the proper description
ok 45 - hasnt_schema(schema) should have the proper diagnostics
ok 46 - hasnt_schema(schema, desc) should fail
ok 47 - hasnt_schema(schema, desc) should have the proper description
ok 48 - hasnt_schema(schema, desc) should have the proper diagnostics
ok 49 - has_table(non-existent table) should fail
ok 50 - has_table(non-existent table) should have the proper description
ok 51 - has_table(non-existent table) should have the proper diagnostics
ok 52 - has_table(non-existent schema, tab) should fail
ok 53 - has_table(non-existent schema, tab) should have the proper description
ok 54 - has_table(non-existent schema, tab) should have the proper diagnostics
ok 55 - has_table(non-existent table, desc) should fail
ok 56 - has_table(non-existent table, desc) should have the proper description
ok 57 - has_table(non-existent table, desc) should have the proper diagnostics
ok 58 - has_table(sch, non-existent table, desc) should fail
ok 59 - has_table(sch, non-existent table, desc) should have the proper description
ok 60 - has_table(sch, non-existent table, desc) should have the proper diagnostics
ok 61 - has_table(tab, desc) should pass
ok 62 - has_table(tab, desc) should have the proper description
ok 63 - has_table(tab, desc) should have the proper diagnostics
ok 64 - has_table(sch, tab, desc) should pass
ok 65 - has_table(sch, tab, desc) should have the proper description
ok 66 - has_table(sch, tab, desc) should have the proper diagnostics
ok 67 - has_table(sch, view, desc) should fail
ok 68 - has_table(sch, view, desc) should have the proper description
ok 69 - has_table(sch, view, desc) should have the proper diagnostics
ok 70 - has_table(type, desc) should fail
ok 71 - has_table(type, desc) should have the proper description
ok 72 - has_table(type, desc) should have the proper diagnostics
ok 73 - has_table(sch, part, desc) should pass
ok 74 - has_table(sch, part, desc) should have the proper description
ok 75 - has_table(sch, part, desc) should have the proper diagnostics
ok 76 - has_table(part, desc) should pass
ok 77 - has_table(part, desc) should have the proper description
ok 78 - has_table(part, desc) should have the proper diagnostics
ok 79 - hasnt_table(non-existent table) should pass
ok 80 - hasnt_table(non-existent table) should have the proper description
ok 81 - hasnt_table(non-existent table) should have the proper diagnostics
ok 82 - hasnt_table(non-existent schema, tab) should pass
ok 83 - hasnt_table(non-existent schema, tab) should have the proper description
ok 84 - hasnt_table(non-existent schema, tab) should have the proper diagnostics
ok 85 - hasnt_table(non-existent table, desc) should pass
ok 86 - hasnt_table(non-existent table, desc) should have the proper description
ok 87 - hasnt_table(non-existent table, desc) should have the proper diagnostics
ok 88 - hasnt_table(sch, non-existent tab, desc) should pass
ok 89 - hasnt_table(sch, non-existent tab, desc) should have the proper description
ok 90 - hasnt_table(sch, non-existent tab, desc) should have the proper diagnostics
ok 91 - hasnt_table(tab, desc) should fail
ok 92 - hasnt_table(tab, desc) should have the proper description
ok 93 - hasnt_table(tab, desc) should have the proper diagnostics
ok 94 - hasnt_table(sch, tab, desc) should fail
ok 95 - hasnt_table(sch, tab, desc) should have the proper description
ok 96 - hasnt_table(sch, tab, desc) should have the proper diagnostics
ok 97 - hasnt_table(part, desc) should fail
ok 98 - hasnt_table(part, desc) should have the proper description
ok 99 - hasnt_table(part, desc) should have the proper diagnostics
ok 100 - hasnt_table(sch, part, desc) should fail
ok 101 - hasnt_table(sch, part, desc) should have the proper description
ok 102 - hasnt_table(sch, part, desc) should have the proper diagnostics
ok 103 - has_view(non-existent view) should fail
ok 104 - has_view(non-existent view) should have the proper description
ok 105 - has_view(non-existent view) should have the proper diagnostics
ok 106 - has_view(non-existent view, desc) should fail
ok 107 - has_view(non-existent view, desc) should have the proper description
ok 108 - has_view(non-existent view, desc) should have the proper diagnostics
ok 109 - has_view(sch, non-existent view, desc) should fail
ok 110 - has_view(sch, non-existent view, desc) should have the proper description
ok 111 - has_view(sch, non-existent view, desc) should have the proper diagnostics
ok 112 - has_view(view, desc) should pass
ok 113 - has_view(view, desc) should have the proper description
ok 114 - has_view(view, desc) should have the proper diagnostics
ok 115 - has_view(sch, view, desc) should pass
ok 116 - has_view(sch, view, desc) should have the proper description
ok 117 - has_view(sch, view, desc) should have the proper diagnostics
ok 118 - has_view(sch, view) should pass
ok 119 - has_view(sch, view) should have the proper description
ok 120 - has_view(sch, view) should have the proper diagnostics
ok 121 - has_view(sch, non-existent view, desc) should fail
ok 122 - has_view(sch, non-existent view, desc) should have the proper description
ok 123 - has_view(sch, non-existent view, desc) should have the proper diagnostics
ok 124 - hasnt_view(non-existent view) should pass
ok 125 - hasnt_view(non-existent view) should have the proper description
ok 126 - hasnt_view(non-existent view) should have the proper diagnostics
ok 127 - hasnt_view(non-existent view, desc) should pass
ok 128 - hasnt_view(non-existent view, desc) should have the proper description
ok 129 - hasnt_view(non-existent view, desc) should have the proper diagnostics
ok 130 - hasnt_view(sch, non-existent view, desc) should pass
ok 131 - hasnt_view(sch, non-existent view, desc) should have the proper description
ok 132 - hasnt_view(sch, non-existent view, desc) should have the proper diagnostics
ok 133 - hasnt_view(view, desc) should fail
ok 134 - hasnt_view(view, desc) should have the proper description
ok 135 - hasnt_view(view, desc) should have the proper diagnostics
ok 136 - hasnt_view(sch, view, desc) should fail
ok 137 - hasnt_view(sch, view, desc) should have the proper description
ok 138 - hasnt_view(sch, view, desc) should have the proper diagnostics
ok 139 - hasnt_view(sch, view) should fail
ok 140 - hasnt_view(sch, view) should have the proper description
ok 141 - hasnt_view(sch, view) should have the proper diagnostics
ok 142 - hasnt_view(sch, non-existent view) should pass
ok 143 - hasnt_view(sch, non-existent view) should have the proper description
ok 144 - hasnt_view(sch, non-existent view) should have the proper diagnostics
ok 145 - has_sequence(non-existent sequence) should fail
ok 146 - has_sequence(non-existent sequence) should have the proper description
ok 147 - has_sequence(non-existent sequence) should have the proper diagnostics
ok 148 - has_sequence(non-existent sequence, desc) should fail
ok 149 - has_sequence(non-existent sequence, desc) should have the proper description
ok 150 - has_sequence(non-existent sequence, desc) should have the proper diagnostics
ok 151 - has_sequence(sch, non-existent sequence, desc) should fail
ok 152 - has_sequence(sch, non-existent sequence, desc) should have the proper description
ok 153 - has_sequence(sch, non-existent sequence, desc) should have the proper diagnostics
ok 154 - has_sequence(sequence, desc) should pass
ok 155 - has_sequence(sequence, desc) should have the proper description
ok 156 - has_sequence(sequence, desc) should have the proper diagnostics
ok 157 - has_sequence(sch, sequence, desc) should pass
ok 158 - has_sequence(sch, sequence, desc) should have the proper description
ok 159 - has_sequence(sch, sequence, desc) should have the proper diagnostics
ok 160 - has_sequence(sch, sequence) should pass
ok 161 - has_sequence(sch, sequence) should have the proper description
ok 162 - hasnt_sequence(non-existent sequence) should pass
ok 163 - hasnt_sequence(non-existent sequence) should have the proper description
ok 164 - hasnt_sequence(non-existent sequence) should have the proper diagnostics
ok 165 - hasnt_sequence(non-existent sequence, desc) should pass
ok 166 - hasnt_sequence(non-existent sequence, desc) should have the proper description
ok 167 - hasnt_sequence(non-existent sequence, desc) should have the proper diagnostics
ok 168 - hasnt_sequence(sch, non-existent sequence, desc) should pass
ok 169 - hasnt_sequence(sch, non-existent sequence, desc) should have the proper description
ok 170 - hasnt_sequence(sch, non-existent sequence, desc) should have the proper diagnostics
ok 171 - hasnt_sequence(sequence, desc) should fail
ok 172 - hasnt_sequence(sequence, desc) should have the proper description
ok 173 - hasnt_sequence(sequence, desc) should have the proper diagnostics
ok 174 - hasnt_sequence(sch, sequence, desc) should fail
ok 175 - hasnt_sequence(sch, sequence, desc) should have the proper description
ok 176 - hasnt_sequence(sch, sequence, desc) should have the proper diagnostics
ok 177 - has_composite(non-existent composite type) should fail
ok 178 - has_composite(non-existent composite type) should have the proper description
ok 179 - has_composite(non-existent composite type) should have the proper diagnostics
ok 180 - has_composite(non-existent schema, tab) should fail
ok 181 - has_composite(non-existent schema, tab) should have the proper description
ok 182 - has_composite(non-existent schema, tab) should have the proper diagnostics
ok 183 - has_composite(sch, non-existent composite type, desc) should fail
ok 184 - has_composite(sch, non-existent composite type, desc) should have the proper description
ok 185 - has_composite(sch, non-existent composite type, desc) should have the proper diagnostics
ok 186 - has_composite(tab, desc) should pass
ok 187 - has_composite(tab, desc) should have the proper description
ok 188 - has_composite(tab, desc) should have the proper diagnostics
ok 189 - has_composite(schema, type) should fail
ok 190 - has_composite(schema, type) should have the proper description
ok 191 - has_composite(schema, type) should have the proper diagnostics
ok 192 - has_composite(schema, type) should pass
ok 193 - has_composite(schema, type) should have the proper description
ok 194 - has_composite(schema, type) should have the proper diagnostics
ok 195 - has_composite(sch, tab, desc) should pass
ok 196 - has_composite(sch, tab, desc) should have the proper description
ok 197 - has_composite(sch, tab, desc) should have the proper diagnostics
ok 198 - has_composite(sch, view, desc) should fail
ok 199 - has_composite(sch, view, desc) should have the proper description
ok 200 - has_composite(sch, view, desc) should have the proper diagnostics
ok 201 - has_composite(type, desc) should fail
ok 202 - has_composite(type, desc) should have the proper description
ok 203 - has_composite(type, desc) should have the proper diagnostics
ok 204 - hasnt_composite(non-existent composite type) should pass
ok 205 - hasnt_composite(non-existent composite type) should have the proper description
ok 206 - hasnt_composite(non-existent composite type) should have the proper diagnostics
ok 207 - hasnt_composite(non-existent schema, tab) should pass
ok 208 - hasnt_composite(non-existent schema, tab) should have the proper description
ok 209 - hasnt_composite(non-existent schema, tab) should have the proper diagnostics
ok 210 - hasnt_composite(sch, non-existent tab, desc) should pass
ok 211 - hasnt_composite(sch, non-existent tab, desc) should have the proper description
ok 212 - hasnt_composite(sch, non-existent tab, desc) should have the proper diagnostics
ok 213 - hasnt_composite(tab, desc) should fail
ok 214 - hasnt_composite(tab, desc) should have the proper description
ok 215 - hasnt_composite(tab, desc) should have the proper diagnostics
ok 216 - hasnt_composite(schema, non-existent type should pass
ok 217 - hasnt_composite(schema, non-existent type should have the proper description
ok 218 - hasnt_composite(schema, non-existent type should have the proper diagnostics
ok 219 - hasnt_composite(sch, tab, desc) should fail
ok 220 - hasnt_composite(sch, tab, desc) should have the proper description
ok 221 - hasnt_composite(sch, tab, desc) should have the proper diagnostics
ok 222 - has_type(type) should pass
ok 223 - has_type(type) should have the proper description
ok 224 - has_type(type) should have the proper diagnostics
ok 225 - has_type(type, desc) should pass
ok 226 - has_type(type, desc) should have the proper description
ok 227 - has_type(type, desc) should have the proper diagnostics
ok 228 - has_type(schema, type) should pass
ok 229 - has_type(schema, type) should have the proper description
ok 230 - has_type(schema, type) should have the proper diagnostics
ok 231 - has_type(schema, type, desc) should pass
ok 232 - has_type(schema, type, desc) should have the proper description
ok 233 - has_type(schema, type, desc) should have the proper diagnostics
ok 234 - has_type(myType) should pass
ok 235 - has_type(myType) should have the proper description
ok 236 - has_type(myType) should have the proper diagnostics
ok 237 - has_type(myType, desc) should pass
ok 238 - has_type(myType, desc) should have the proper description
ok 239 - has_type(myType, desc) should have the proper diagnostics
ok 240 - has_type(scheam, myType) should pass
ok 241 - has_type(scheam, myType) should have the proper description
ok 242 - has_type(scheam, myType) should have the proper diagnostics
ok 243 - has_type(schema, myType, desc) should pass
ok 244 - has_type(schema, myType, desc) should have the proper description
ok 245 - has_type(schema, myType, desc) should have the proper diagnostics
ok 246 - has_type(type) should fail
ok 247 - has_type(type) should have the proper description
ok 248 - has_type(type) should have the proper diagnostics
ok 249 - has_type(type, desc) should fail
ok 250 - has_type(type, desc) should have the proper description
ok 251 - has_type(type, desc) should have the proper diagnostics
ok 252 - has_type(scheam, type) should fail
ok 253 - has_type(scheam, type) should have the proper description
ok 254 - has_type(scheam, type) should have the proper diagnostics
ok 255 - has_type(schema, type, desc) should fail
ok 256 - has_type(schema, type, desc) should have the proper description
ok 257 - has_type(schema, type, desc) should have the proper diagnostics
ok 258 - has_type(domain) should pass
ok 259 - has_type(domain) should have the proper description
ok 260 - has_type(domain) should have the proper diagnostics
ok 261 - has_type(myDomain) should pass
ok 262 - has_type(myDomain) should have the proper description
ok 263 - has_type(myDomain) should have the proper diagnostics
ok 264 - hasnt_type(type) should pass
ok 265 - hasnt_type(type) should have the proper description
ok 266 - hasnt_type(type) should have the proper diagnostics
ok 267 - hasnt_type(type, desc) should pass
ok 268 - hasnt_type(type, desc) should have the proper description
ok 269 - hasnt_type(type, desc) should have the proper diagnostics
ok 270 - hasnt_type(scheam, type) should pass
ok 271 - hasnt_type(scheam, type) should have the proper description
ok 272 - hasnt_type(scheam, type) should have the proper diagnostics
ok 273 - hasnt_type(schema, type, desc) should pass
ok 274 - hasnt_type(schema, type, desc) should have the proper description
ok 275 - hasnt_type(schema, type, desc) should have the proper diagnostics
ok 276 - hasnt_type(type) should fail
ok 277 - hasnt_type(type) should have the proper description
ok 278 - hasnt_type(type) should have the proper diagnostics
ok 279 - hasnt_type(type, desc) should fail
ok 280 - hasnt_type(type, desc) should have the proper description
ok 281 - hasnt_type(type, desc) should have the proper diagnostics
ok 282 - hasnt_type(scheam, type) should fail
ok 283 - hasnt_type(scheam, type) should have the proper description
ok 284 - hasnt_type(scheam, type) should have the proper diagnostics
ok 285 - hasnt_type(schema, type, desc) should fail
ok 286 - hasnt_type(schema, type, desc) should have the proper description
ok 287 - hasnt_type(schema, type, desc) should have the proper diagnostics
ok 288 - has_domain(domain) should pass
ok 289 - has_domain(domain) should have the proper description
ok 290 - has_domain(domain) should have the proper diagnostics
ok 291 - has_domain(domain, desc) should pass
ok 292 - has_domain(domain, desc) should have the proper description
ok 293 - has_domain(domain, desc) should have the proper diagnostics
ok 294 - has_domain(scheam, domain) should pass
ok 295 - has_domain(scheam, domain) should have the proper description
ok 296 - has_domain(scheam, domain) should have the proper diagnostics
ok 297 - has_domain(schema, domain, desc) should pass
ok 298 - has_domain(schema, domain, desc) should have the proper description
ok 299 - has_domain(schema, domain, desc) should have the proper diagnostics
ok 300 - has_domain(myDomain) should pass
ok 301 - has_domain(myDomain) should have the proper description
ok 302 - has_domain(myDomain) should have the proper diagnostics
ok 303 - has_domain(myDomain, desc) should pass
ok 304 - has_domain(myDomain, desc) should have the proper description
ok 305 - has_domain(myDomain, desc) should have the proper diagnostics
ok 306 - has_domain(scheam, myDomain) should pass
ok 307 - has_domain(scheam, myDomain) should have the proper description
ok 308 - has_domain(scheam, myDomain) should have the proper diagnostics
ok 309 - has_domain(schema, myDomain, desc) should pass
ok 310 - has_domain(schema, myDomain, desc) should have the proper description
ok 311 - has_domain(schema, myDomain, desc) should have the proper diagnostics
ok 312 - has_domain(domain) should fail
ok 313 - has_domain(domain) should have the proper description
ok 314 - has_domain(domain) should have the proper diagnostics
ok 315 - has_domain(domain, desc) should fail
ok 316 - has_domain(domain, desc) should have the proper description
ok 317 - has_domain(domain, desc) should have the proper diagnostics
ok 318 - has_domain(scheam, domain) should fail
ok 319 - has_domain(scheam, domain) should have the proper description
ok 320 - has_domain(scheam, domain) should have the proper diagnostics
ok 321 - has_domain(schema, domain, desc) should fail
ok 322 - has_domain(schema, domain, desc) should have the proper description
ok 323 - has_domain(schema, domain, desc) should have the proper diagnostics
ok 324 - hasnt_domain(domain) should pass
ok 325 - hasnt_domain(domain) should have the proper description
ok 326 - hasnt_domain(domain) should have the proper diagnostics
ok 327 - hasnt_domain(domain, desc) should pass
ok 328 - hasnt_domain(domain, desc) should have the proper description
ok 329 - hasnt_domain(domain, desc) should have the proper diagnostics
ok 330 - hasnt_domain(scheam, domain) should pass
ok 331 - hasnt_domain(scheam, domain) should have the proper description
ok 332 - hasnt_domain(scheam, domain) should have the proper diagnostics
ok 333 - hasnt_domain(schema, domain, desc) should pass
ok 334 - hasnt_domain(schema, domain, desc) should have the proper description
ok 335 - hasnt_domain(schema, domain, desc) should have the proper diagnostics
ok 336 - hasnt_domain(domain) should fail
ok 337 - hasnt_domain(domain) should have the proper description
ok 338 - hasnt_domain(domain) should have the proper diagnostics
ok 339 - hasnt_domain(domain, desc) should fail
ok 340 - hasnt_domain(domain, desc) should have the proper description
ok 341 - hasnt_domain(domain, desc) should have the proper diagnostics
ok 342 - hasnt_domain(scheam, domain) should fail
ok 343 - hasnt_domain(scheam, domain) should have the proper description
ok 344 - hasnt_domain(scheam, domain) should have the proper diagnostics
ok 345 - hasnt_domain(schema, domain, desc) should fail
ok 346 - hasnt_domain(schema, domain, desc) should have the proper description
ok 347 - hasnt_domain(schema, domain, desc) should have the proper diagnostics
ok 348 - has_column(non-existent tab, col) should fail
ok 349 - has_column(non-existent tab, col) should have the proper description
ok 350 - has_column(non-existent tab, col) should have the proper diagnostics
ok 351 - has_column(non-existent tab, col, desc) should fail
ok 352 - has_column(non-existent tab, col, desc) should have the proper description
ok 353 - has_column(non-existent tab, col, desc) should have the proper diagnostics
ok 354 - has_column(non-existent sch, tab, col, desc) should fail
ok 355 - has_column(non-existent sch, tab, col, desc) should have the proper description
ok 356 - has_column(non-existent sch, tab, col, desc) should have the proper diagnostics
ok 357 - has_column(table, column) should pass
ok 358 - has_column(table, column) should have the proper description
ok 359 - has_column(table, column) should have the proper diagnostics
ok 360 - has_column(sch, tab, col, desc) should pass
ok 361 - has_column(sch, tab, col, desc) should have the proper description
ok 362 - has_column(sch, tab, col, desc) should have the proper diagnostics
ok 363 - has_column(table, camleCase column) should pass
ok 364 - has_column(table, camleCase column) should have the proper description
ok 365 - has_column(table, camleCase column) should have the proper diagnostics
ok 366 - has_column(view, column) should pass
ok 367 - has_column(view, column) should have the proper description
ok 368 - has_column(view, column) should have the proper diagnostics
ok 369 - has_column(type, column) should pass
ok 370 - has_column(type, column) should have the proper description
ok 371 - has_column(type, column) should have the proper diagnostics
ok 372 - hasnt_column(non-existent tab, col) should pass
ok 373 - hasnt_column(non-existent tab, col) should have the proper description
ok 374 - hasnt_column(non-existent tab, col) should have the proper diagnostics
ok 375 - hasnt_column(non-existent tab, col, desc) should pass
ok 376 - hasnt_column(non-existent tab, col, desc) should have the proper description
ok 377 - hasnt_column(non-existent tab, col, desc) should have the proper diagnostics
ok 378 - hasnt_column(non-existent sch, tab, col, desc) should pass
ok 379 - hasnt_column(non-existent sch, tab, col, desc) should have the proper description
ok 380 - hasnt_column(non-existent sch, tab, col, desc) should have the proper diagnostics
ok 381 - hasnt_column(table, column) should fail
ok 382 - hasnt_column(table, column) should have the proper description
ok 383 - hasnt_column(table, column) should have the proper diagnostics
ok 384 - hasnt_column(sch, tab, col, desc) should fail
ok 385 - hasnt_column(sch, tab, col, desc) should have the proper description
ok 386 - hasnt_column(sch, tab, col, desc) should have the proper diagnostics
ok 387 - hasnt_column(view, column) should pass
ok 388 - hasnt_column(view, column) should have the proper description
ok 389 - hasnt_column(view, column) should have the proper diagnostics
ok 390 - hasnt_column(type, column) should pass
ok 391 - hasnt_column(type, column) should have the proper description
ok 392 - hasnt_column(type, column) should have the proper diagnostics
ok 393 - has_cast( src, targ, schema, func, desc) should pass
ok 394 - has_cast( src, targ, schema, func, desc) should have the proper description
ok 395 - has_cast( src, targ, schema, func, desc) should have the proper diagnostics
ok 396 - has_cast( src, targ, schema, func ) should pass
ok 397 - has_cast( src, targ, schema, func ) should have the proper description
ok 398 - has_cast( src, targ, schema, func ) should have the proper diagnostics
ok 399 - has_cast( src, targ, func, desc ) should pass
ok 400 - has_cast( src, targ, func, desc ) should have the proper description
ok 401 - has_cast( src, targ, func, desc ) should have the proper diagnostics
ok 402 - has_cast( src, targ, func) should pass
ok 403 - has_cast( src, targ, func) should have the proper description
ok 404 - has_cast( src, targ, func) should have the proper diagnostics
ok 405 - has_cast( src, targ, desc ) should pass
ok 406 - has_cast( src, targ, desc ) should have the proper description
ok 407 - has_cast( src, targ, desc ) should have the proper diagnostics
ok 408 - has_cast( src, targ ) should pass
ok 409 - has_cast( src, targ ) should have the proper description
ok 410 - has_cast( src, targ ) should have the proper diagnostics
ok 411 - has_cast( src, targ, schema, func, desc) fail should fail
ok 412 - has_cast( src, targ, schema, func, desc) fail should have the proper description
ok 413 - has_cast( src, targ, schema, func, desc) fail should have the proper diagnostics
ok 414 - has_cast( src, targ, func, desc ) fail should fail
ok 415 - has_cast( src, targ, func, desc ) fail should have the proper description
ok 416 - has_cast( src, targ, func, desc ) fail should have the proper diagnostics
ok 417 - has_cast( src, targ, desc ) fail should fail
ok 418 - has_cast( src, targ, desc ) fail should have the proper description
ok 419 - has_cast( src, targ, desc ) fail should have the proper diagnostics
ok 420 - hasnt_cast( src, targ, schema, func, desc) should fail
ok 421 - hasnt_cast( src, targ, schema, func, desc) should have the proper description
ok 422 - hasnt_cast( src, targ, schema, func, desc) should have the proper diagnostics
ok 423 - hasnt_cast( src, targ, schema, func ) should fail
ok 424 - hasnt_cast( src, targ, schema, func ) should have the proper description
ok 425 - hasnt_cast( src, targ, schema, func ) should have the proper diagnostics
ok 426 - hasnt_cast( src, targ, func, desc ) should fail
ok 427 - hasnt_cast( src, targ, func, desc ) should have the proper description
ok 428 - hasnt_cast( src, targ, func, desc ) should have the proper diagnostics
ok 429 - hasnt_cast( src, targ, func) should fail
ok 430 - hasnt_cast( src, targ, func) should have the proper description
ok 431 - hasnt_cast( src, targ, func) should have the proper diagnostics
ok 432 - hasnt_cast( src, targ, desc ) should fail
ok 433 - hasnt_cast( src, targ, desc ) should have the proper description
ok 434 - hasnt_cast( src, targ, desc ) should have the proper diagnostics
ok 435 - hasnt_cast( src, targ ) should fail
ok 436 - hasnt_cast( src, targ ) should have the proper description
ok 437 - hasnt_cast( src, targ ) should have the proper diagnostics
ok 438 - hasnt_cast( src, targ, schema, func, desc) fail should pass
ok 439 - hasnt_cast( src, targ, schema, func, desc) fail should have the proper description
ok 440 - hasnt_cast( src, targ, schema, func, desc) fail should have the proper diagnostics
ok 441 - hasnt_cast( src, targ, func, desc ) fail should pass
ok 442 - hasnt_cast( src, targ, func, desc ) fail should have the proper description
ok 443 - hasnt_cast( src, targ, func, desc ) fail should have the proper diagnostics
ok 444 - hasnt_cast( src, targ, desc ) fail should pass
ok 445 - hasnt_cast( src, targ, desc ) fail should have the proper description
ok 446 - hasnt_cast( src, targ, desc ) fail should have the proper diagnostics
ok 447 - cast_context_is( src, targ, context, desc ) should pass
ok 448 - cast_context_is( src, targ, context, desc ) should have the proper description
ok 449 - cast_context_is( src, targ, context, desc ) should have the proper diagnostics
ok 450 - cast_context_is( src, targ, context ) should pass
ok 451 - cast_context_is( src, targ, context ) should have the proper description
ok 452 - cast_context_is( src, targ, context ) should have the proper diagnostics
ok 453 - cast_context_is( src, targ, i, desc ) should pass
ok 454 - cast_context_is( src, targ, i, desc ) should have the proper description
ok 455 - cast_context_is( src, targ, i, desc ) should have the proper diagnostics
ok 456 - cast_context_is( src, targ, IMPL, desc ) should pass
ok 457 - cast_context_is( src, targ, IMPL, desc ) should have the proper description
ok 458 - cast_context_is( src, targ, IMPL, desc ) should have the proper diagnostics
ok 459 - cast_context_is( src, targ, assignment, desc ) should pass
ok 460 - cast_context_is( src, targ, assignment, desc ) should have the proper description
ok 461 - cast_context_is( src, targ, assignment, desc ) should have the proper diagnostics
ok 462 - cast_context_is( src, targ, a, desc ) should pass
ok 463 - cast_context_is( src, targ, a, desc ) should have the proper description
ok 464 - cast_context_is( src, targ, a, desc ) should have the proper diagnostics
ok 465 - cast_context_is( src, targ, ASS, desc ) should pass
ok 466 - cast_context_is( src, targ, ASS, desc ) should have the proper description
ok 467 - cast_context_is( src, targ, ASS, desc ) should have the proper diagnostics
ok 468 - cast_context_is( src, targ, explicit, desc ) should pass
ok 469 - cast_context_is( src, targ, explicit, desc ) should have the proper description
ok 470 - cast_context_is( src, targ, explicit, desc ) should have the proper diagnostics
ok 471 - cast_context_is( src, targ, e, desc ) should pass
ok 472 - cast_context_is( src, targ, e, desc ) should have the proper description
ok 473 - cast_context_is( src, targ, e, desc ) should have the proper diagnostics
ok 474 - cast_context_is( src, targ, EX, desc ) should pass
ok 475 - cast_context_is( src, targ, EX, desc ) should have the proper description
ok 476 - cast_context_is( src, targ, EX, desc ) should have the proper diagnostics
ok 477 - cast_context_is( src, targ, context, desc ) fail should fail
ok 478 - cast_context_is( src, targ, context, desc ) fail should have the proper description
ok 479 - cast_context_is( src, targ, context, desc ) fail should have the proper diagnostics
ok 480 - cast_context_is( src, targ, context ) fail should fail
ok 481 - cast_context_is( src, targ, context ) fail should have the proper description
ok 482 - cast_context_is( src, targ, context ) fail should have the proper diagnostics
ok 483 - cast_context_is( src, targ, context, desc ) noexist should fail
ok 484 - cast_context_is( src, targ, context, desc ) noexist should have the proper description
ok 485 - cast_context_is( src, targ, context, desc ) noexist should have the proper diagnostics
ok 486 - has_operator( left, schema, name, right, result, desc ) should pass
ok 487 - has_operator( left, schema, name, right, result, desc ) should have the proper description
ok 488 - has_operator( left, schema, name, right, result, desc ) should have the proper diagnostics
ok 489 - has_operator( left, schema, name, right, result ) should pass
ok 490 - has_operator( left, schema, name, right, result ) should have the proper description
ok 491 - has_operator( left, schema, name, right, result ) should have the proper diagnostics
ok 492 - has_operator( left, name, right, result, desc ) should pass
ok 493 - has_operator( left, name, right, result, desc ) should have the proper description
ok 494 - has_operator( left, name, right, result, desc ) should have the proper diagnostics
ok 495 - has_operator( left, name, right, result ) should pass
ok 496 - has_operator( left, name, right, result ) should have the proper description
ok 497 - has_operator( left, name, right, result ) should have the proper diagnostics
ok 498 - has_operator( left, name, right, desc ) should pass
ok 499 - has_operator( left, name, right, desc ) should have the proper description
ok 500 - has_operator( left, name, right, desc ) should have the proper diagnostics
ok 501 - has_operator( left, name, right ) should pass
ok 502 - has_operator( left, name, right ) should have the proper description
ok 503 - has_operator( left, name, right ) should have the proper diagnostics
ok 504 - has_operator( left, schema, name, right, result, desc ) fail should fail
ok 505 - has_operator( left, schema, name, right, result, desc ) fail should have the proper description
ok 506 - has_operator( left, schema, name, right, result, desc ) fail should have the proper diagnostics
ok 507 - has_operator( left, schema, name, right, result ) fail should fail
ok 508 - has_operator( left, schema, name, right, result ) fail should have the proper description
ok 509 - has_operator( left, schema, name, right, result ) fail should have the proper diagnostics
ok 510 - has_operator( left, name, right, result, desc ) fail should fail
ok 511 - has_operator( left, name, right, result, desc ) fail should have the proper description
ok 512 - has_operator( left, name, right, result, desc ) fail should have the proper diagnostics
ok 513 - has_operator( left, name, right, result ) fail should fail
ok 514 - has_operator( left, name, right, result ) fail should have the proper description
ok 515 - has_operator( left, name, right, result ) fail should have the proper diagnostics
ok 516 - has_operator( left, name, right, desc ) fail should fail
ok 517 - has_operator( left, name, right, desc ) fail should have the proper description
ok 518 - has_operator( left, name, right, desc ) fail should have the proper diagnostics
ok 519 - has_operator( left, name, right ) fail should fail
ok 520 - has_operator( left, name, right ) fail should have the proper description
ok 521 - has_operator( left, name, right ) fail should have the proper diagnostics
ok 522 - hasnt_operator( left, schema, name, right, result, desc ) fail should fail
ok 523 - hasnt_operator( left, schema, name, right, result, desc ) fail should have the proper description
ok 524 - hasnt_operator( left, schema, name, right, result, desc ) fail should have the proper diagnostics
ok 525 - hasnt_operator( left, schema, name, right, result ) fail should fail
ok 526 - hasnt_operator( left, schema, name, right, result ) fail should have the proper description
ok 527 - hasnt_operator( left, schema, name, right, result ) fail should have the proper diagnostics
ok 528 - hasnt_operator( left, name, right, result, desc ) fail should fail
ok 529 - hasnt_operator( left, name, right, result, desc ) fail should have the proper description
ok 530 - hasnt_operator( left, name, right, result, desc ) fail should have the proper diagnostics
ok 531 - hasnt_operator( left, name, right, result ) fail should fail
ok 532 - hasnt_operator( left, name, right, result ) fail should have the proper description
ok 533 - hasnt_operator( left, name, right, result ) fail should have the proper diagnostics
ok 534 - hasnt_operator( left, name, right, desc ) fail should fail
ok 535 - hasnt_operator( left, name, right, desc ) fail should have the proper description
ok 536 - hasnt_operator( left, name, right, desc ) fail should have the proper diagnostics
ok 537 - hasnt_operator( left, name, right ) fail should fail
ok 538 - hasnt_operator( left, name, right ) fail should have the proper description
ok 539 - hasnt_operator( left, name, right ) fail should have the proper diagnostics
ok 540 - hasnt_operator( left, schema, name, right, result, desc ) should pass
ok 541 - hasnt_operator( left, schema, name, right, result, desc ) should have the proper description
ok 542 - hasnt_operator( left, schema, name, right, result, desc ) should have the proper diagnostics
ok 543 - hasnt_operator( left, schema, name, right, result ) should pass
ok 544 - hasnt_operator( left, schema, name, right, result ) should have the proper description
ok 545 - hasnt_operator( left, schema, name, right, result ) should have the proper diagnostics
ok 546 - hasnt_operator( left, name, right, result, desc ) should pass
ok 547 - hasnt_operator( left, name, right, result, desc ) should have the proper description
ok 548 - hasnt_operator( left, name, right, result, desc ) should have the proper diagnostics
ok 549 - hasnt_operator( left, name, right, result ) should pass
ok 550 - hasnt_operator( left, name, right, result ) should have the proper description
ok 551 - hasnt_operator( left, name, right, result ) should have the proper diagnostics
ok 552 - hasnt_operator( left, name, right, desc ) should pass
ok 553 - hasnt_operator( left, name, right, desc ) should have the proper description
ok 554 - hasnt_operator( left, name, right, desc ) should have the proper diagnostics
ok 555 - hasnt_operator( left, name, right ) should pass
ok 556 - hasnt_operator( left, name, right ) should have the proper description
ok 557 - hasnt_operator( left, name, right ) should have the proper diagnostics
ok 558 - has_leftop( schema, name, right, result, desc ) should pass
ok 559 - has_leftop( schema, name, right, result, desc ) should have the proper description
ok 560 - has_leftop( schema, name, right, result, desc ) should have the proper diagnostics
ok 561 - has_leftop( schema, name, right, result ) should pass
ok 562 - has_leftop( schema, name, right, result ) should have the proper description
ok 563 - has_leftop( schema, name, right, result ) should have the proper diagnostics
ok 564 - has_leftop( name, right, result, desc ) should pass
ok 565 - has_leftop( name, right, result, desc ) should have the proper description
ok 566 - has_leftop( name, right, result, desc ) should have the proper diagnostics
ok 567 - has_leftop( name, right, result ) should pass
ok 568 - has_leftop( name, right, result ) should have the proper description
ok 569 - has_leftop( name, right, result ) should have the proper diagnostics
ok 570 - has_leftop( name, right, desc ) should pass
ok 571 - has_leftop( name, right, desc ) should have the proper description
ok 572 - has_leftop( name, right, desc ) should have the proper diagnostics
ok 573 - has_leftop( name, right ) should pass
ok 574 - has_leftop( name, right ) should have the proper description
ok 575 - has_leftop( name, right ) should have the proper diagnostics
ok 576 - has_leftop( schema, name, right, result, desc ) fail should fail
ok 577 - has_leftop( schema, name, right, result, desc ) fail should have the proper description
ok 578 - has_leftop( schema, name, right, result, desc ) fail should have the proper diagnostics
ok 579 - has_leftop( schema, name, right, result ) fail should fail
ok 580 - has_leftop( schema, name, right, result ) fail should have the proper description
ok 581 - has_leftop( schema, name, right, result ) fail should have the proper diagnostics
ok 582 - has_leftop( name, right, result, desc ) fail should fail
ok 583 - has_leftop( name, right, result, desc ) fail should have the proper description
ok 584 - has_leftop( name, right, result, desc ) fail should have the proper diagnostics
ok 585 - has_leftop( name, right, result ) fail should fail
ok 586 - has_leftop( name, right, result ) fail should have the proper description
ok 587 - has_leftop( name, right, result ) fail should have the proper diagnostics
ok 588 - has_leftop( name, right, desc ) fail should fail
ok 589 - has_leftop( name, right, desc ) fail should have the proper description
ok 590 - has_leftop( name, right, desc ) fail should have the proper diagnostics
ok 591 - has_leftop( name, right ) fail should fail
ok 592 - has_leftop( name, right ) fail should have the proper description
ok 593 - has_leftop( name, right ) fail should have the proper diagnostics
ok 594 - hasnt_leftop( schema, name, right, result, desc ) fail should fail
ok 595 - hasnt_leftop( schema, name, right, result, desc ) fail should have the proper description
ok 596 - hasnt_leftop( schema, name, right, result, desc ) fail should have the proper diagnostics
ok 597 - hasnt_leftop( schema, name, right, result ) fail should fail
ok 598 - hasnt_leftop( schema, name, right, result ) fail should have the proper description
ok 599 - hasnt_leftop( schema, name, right, result ) fail should have the proper diagnostics
ok 600 - hasnt_leftop( name, right, result, desc ) fail should fail
ok 601 - hasnt_leftop( name, right, result, desc ) fail should have the proper description
ok 602 - hasnt_leftop( name, right, result, desc ) fail should have the proper diagnostics
ok 603 - hasnt_leftop( name, right, result ) fail should fail
ok 604 - hasnt_leftop( name, right, result ) fail should have the proper description
ok 605 - hasnt_leftop( name, right, result ) fail should have the proper diagnostics
ok 606 - hasnt_leftop( name, right, desc ) fail should fail
ok 607 - hasnt_leftop( name, right, desc ) fail should have the proper description
ok 608 - hasnt_leftop( name, right, desc ) fail should have the proper diagnostics
ok 609 - hasnt_leftop( name, right ) fail should fail
ok 610 - hasnt_leftop( name, right ) fail should have the proper description
ok 611 - hasnt_leftop( name, right ) fail should have the proper diagnostics
ok 612 - hasnt_leftop( schema, name, right, result, desc ) should pass
ok 613 - hasnt_leftop( schema, name, right, result, desc ) should have the proper description
ok 614 - hasnt_leftop( schema, name, right, result, desc ) should have the proper diagnostics
ok 615 - hasnt_leftop( schema, name, right, result ) should pass
ok 616 - hasnt_leftop( schema, name, right, result ) should have the proper description
ok 617 - hasnt_leftop( schema, name, right, result ) should have the proper diagnostics
ok 618 - hasnt_leftop( name, right, result, desc ) should pass
ok 619 - hasnt_leftop( name, right, result, desc ) should have the proper description
ok 620 - hasnt_leftop( name, right, result, desc ) should have the proper diagnostics
ok 621 - hasnt_leftop( name, right, result ) should pass
ok 622 - hasnt_leftop( name, right, result ) should have the proper description
ok 623 - hasnt_leftop( name, right, result ) should have the proper diagnostics
ok 624 - hasnt_leftop( name, right, desc ) should pass
ok 625 - hasnt_leftop( name, right, desc ) should have the proper description
ok 626 - hasnt_leftop( name, right, desc ) should have the proper diagnostics
ok 627 - hasnt_leftop( name, right ) should pass
ok 628 - hasnt_leftop( name, right ) should have the proper description
ok 629 - hasnt_leftop( name, right ) should have the proper diagnostics
ok 630 - has_rightop( left, schema, name, result, desc ) should pass
ok 631 - has_rightop( left, schema, name, result, desc ) should have the proper description
ok 632 - has_rightop( left, schema, name, result, desc ) should have the proper diagnostics
ok 633 - has_rightop( left, schema, name, result ) should pass
ok 634 - has_rightop( left, schema, name, result ) should have the proper description
ok 635 - has_rightop( left, schema, name, result ) should have the proper diagnostics
ok 636 - has_rightop( left, name, result, desc ) should pass
ok 637 - has_rightop( left, name, result, desc ) should have the proper description
ok 638 - has_rightop( left, name, result, desc ) should have the proper diagnostics
ok 639 - has_rightop( left, name, result ) should pass
ok 640 - has_rightop( left, name, result ) should have the proper description
ok 641 - has_rightop( left, name, result ) should have the proper diagnostics
ok 642 - has_rightop( left, name, desc ) should pass
ok 643 - has_rightop( left, name, desc ) should have the proper description
ok 644 - has_rightop( left, name, desc ) should have the proper diagnostics
ok 645 - has_rightop( left, name ) should pass
ok 646 - has_rightop( left, name ) should have the proper description
ok 647 - has_rightop( left, name ) should have the proper diagnostics
ok 648 - has_rightop( left, schema, name, result, desc ) fail should fail
ok 649 - has_rightop( left, schema, name, result, desc ) fail should have the proper description
ok 650 - has_rightop( left, schema, name, result, desc ) fail should have the proper diagnostics
ok 651 - has_rightop( left, schema, name, result ) fail should fail
ok 652 - has_rightop( left, schema, name, result ) fail should have the proper description
ok 653 - has_rightop( left, schema, name, result ) fail should have the proper diagnostics
ok 654 - has_rightop( left, name, result, desc ) fail should fail
ok 655 - has_rightop( left, name, result, desc ) fail should have the proper description
ok 656 - has_rightop( left, name, result, desc ) fail should have the proper diagnostics
ok 657 - has_rightop( left, name, result ) fail should fail
ok 658 - has_rightop( left, name, result ) fail should have the proper description
ok 659 - has_rightop( left, name, result ) fail should have the proper diagnostics
ok 660 - has_rightop( left, name, desc ) fail should fail
ok 661 - has_rightop( left, name, desc ) fail should have the proper description
ok 662 - has_rightop( left, name, desc ) fail should have the proper diagnostics
ok 663 - has_rightop( left, name ) fail should fail
ok 664 - has_rightop( left, name ) fail should have the proper description
ok 665 - has_rightop( left, name ) fail should have the proper diagnostics
ok 666 - hasnt_rightop( left, schema, name, result, desc ) fail should fail
ok 667 - hasnt_rightop( left, schema, name, result, desc ) fail should have the proper description
ok 668 - hasnt_rightop( left, schema, name, result, desc ) fail should have the proper diagnostics
ok 669 - hasnt_rightop( left, schema, name, result ) fail should fail
ok 670 - hasnt_rightop( left, schema, name, result ) fail should have the proper description
ok 671 - hasnt_rightop( left, schema, name, result ) fail should have the proper diagnostics
ok 672 - hasnt_rightop( left, name, result, desc ) fail should fail
ok 673 - hasnt_rightop( left, name, result, desc ) fail should have the proper description
ok 674 - hasnt_rightop( left, name, result, desc ) fail should have the proper diagnostics
ok 675 - hasnt_rightop( left, name, result ) fail should fail
ok 676 - hasnt_rightop( left, name, result ) fail should have the proper description
ok 677 - hasnt_rightop( left, name, result ) fail should have the proper diagnostics
ok 678 - hasnt_rightop( left, name, desc ) fail should fail
ok 679 - hasnt_rightop( left, name, desc ) fail should have the proper description
ok 680 - hasnt_rightop( left, name, desc ) fail should have the proper diagnostics
ok 681 - hasnt_rightop( left, name ) fail should fail
ok 682 - hasnt_rightop( left, name ) fail should have the proper description
ok 683 - hasnt_rightop( left, name ) fail should have the proper diagnostics
ok 684 - hasnt_rightop( left, schema, name, result, desc ) should pass
ok 685 - hasnt_rightop( left, schema, name, result, desc ) should have the proper description
ok 686 - hasnt_rightop( left, schema, name, result, desc ) should have the proper diagnostics
ok 687 - hasnt_rightop( left, schema, name, result ) should pass
ok 688 - hasnt_rightop( left, schema, name, result ) should have the proper description
ok 689 - hasnt_rightop( left, schema, name, result ) should have the proper diagnostics
ok 690 - hasnt_rightop( left, name, result, desc ) should pass
ok 691 - hasnt_rightop( left, name, result, desc ) should have the proper description
ok 692 - hasnt_rightop( left, name, result, desc ) should have the proper diagnostics
ok 693 - hasnt_rightop( left, name, result ) should pass
ok 694 - hasnt_rightop( left, name, result ) should have the proper description
ok 695 - hasnt_rightop( left, name, result ) should have the proper diagnostics
ok 696 - hasnt_rightop( left, name, desc ) should pass
ok 697 - hasnt_rightop( left, name, desc ) should have the proper description
ok 698 - hasnt_rightop( left, name, desc ) should have the proper diagnostics
ok 699 - hasnt_rightop( left, name ) should pass
ok 700 - hasnt_rightop( left, name ) should have the proper description
ok 701 - hasnt_rightop( left, name ) should have the proper diagnostics
ok 702 - has_language(language) should pass
ok 703 - has_language(language) should have the proper description
ok 704 - has_language(language) should have the proper diagnostics
ok 705 - has_language(language, desc) should pass
ok 706 - has_language(language, desc) should have the proper description
ok 707 - has_language(language, desc) should have the proper diagnostics
ok 708 - has_language(nonexistent language) should fail
ok 709 - has_language(nonexistent language) should have the proper description
ok 710 - has_language(nonexistent language) should have the proper diagnostics
ok 711 - has_language(nonexistent language, desc) should fail
ok 712 - has_language(nonexistent language, desc) should have the proper description
ok 713 - has_language(nonexistent language, desc) should have the proper diagnostics
ok 714 - hasnt_language(language) should fail
ok 715 - hasnt_language(language) should have the proper description
ok 716 - hasnt_language(language) should have the proper diagnostics
ok 717 - hasnt_language(language, desc) should fail
ok 718 - hasnt_language(language, desc) should have the proper description
ok 719 - hasnt_language(language, desc) should have the proper diagnostics
ok 720 - hasnt_language(nonexistent language) should pass
ok 721 - hasnt_language(nonexistent language) should have the proper description
ok 722 - hasnt_language(nonexistent language) should have the proper diagnostics
ok 723 - hasnt_language(nonexistent language, desc) should pass
ok 724 - hasnt_language(nonexistent language, desc) should have the proper description
ok 725 - hasnt_language(nonexistent language, desc) should have the proper diagnostics
ok 726 - language_is_trusted(language, desc) should pass
ok 727 - language_is_trusted(language, desc) should have the proper description
ok 728 - language_is_trusted(language, desc) should have the proper diagnostics
ok 729 - language_is_trusted(language) should pass
ok 730 - language_is_trusted(language) should have the proper description
ok 731 - language_is_trusted(language) should have the proper diagnostics
ok 732 - language_is_trusted(language, desc) fail should fail
ok 733 - language_is_trusted(language, desc) fail should have the proper description
ok 734 - language_is_trusted(language, desc) fail should have the proper diagnostics
ok 735 - language_is_trusted(language, desc) non-existent should fail
ok 736 - language_is_trusted(language, desc) non-existent should have the proper description
ok 737 - language_is_trusted(language, desc) non-existent should have the proper diagnostics
ok 738 - has_opclass( schema, name, desc ) should pass
ok 739 - has_opclass( schema, name, desc ) should have the proper description
ok 740 - has_opclass( schema, name, desc ) should have the proper diagnostics
ok 741 - has_opclass( schema, name ) should pass
ok 742 - has_opclass( schema, name ) should have the proper description
ok 743 - has_opclass( schema, name ) should have the proper diagnostics
ok 744 - has_opclass( name, desc ) should pass
ok 745 - has_opclass( name, desc ) should have the proper description
ok 746 - has_opclass( name, desc ) should have the proper diagnostics
ok 747 - has_opclass( name ) should pass
ok 748 - has_opclass( name ) should have the proper description
ok 749 - has_opclass( name ) should have the proper diagnostics
ok 750 - has_opclass( schema, name, desc ) fail should fail
ok 751 - has_opclass( schema, name, desc ) fail should have the proper description
ok 752 - has_opclass( schema, name, desc ) fail should have the proper diagnostics
ok 753 - has_opclass( name, desc ) fail should fail
ok 754 - has_opclass( name, desc ) fail should have the proper description
ok 755 - has_opclass( name, desc ) fail should have the proper diagnostics
ok 756 - hasnt_opclass( schema, name, desc ) should fail
ok 757 - hasnt_opclass( schema, name, desc ) should have the proper description
ok 758 - hasnt_opclass( schema, name, desc ) should have the proper diagnostics
ok 759 - hasnt_opclass( schema, name ) should fail
ok 760 - hasnt_opclass( schema, name ) should have the proper description
ok 761 - hasnt_opclass( schema, name ) should have the proper diagnostics
ok 762 - hasnt_opclass( name, desc ) should fail
ok 763 - hasnt_opclass( name, desc ) should have the proper description
ok 764 - hasnt_opclass( name, desc ) should have the proper diagnostics
ok 765 - hasnt_opclass( name ) should fail
ok 766 - hasnt_opclass( name ) should have the proper description
ok 767 - hasnt_opclass( name ) should have the proper diagnostics
ok 768 - hasnt_opclass( schema, name, desc ) fail should pass
ok 769 - hasnt_opclass( schema, name, desc ) fail should have the proper description
ok 770 - hasnt_opclass( schema, name, desc ) fail should have the proper diagnostics
ok 771 - hasnt_opclass( name, desc ) fail should pass
ok 772 - hasnt_opclass( name, desc ) fail should have the proper description
ok 773 - hasnt_opclass( name, desc ) fail should have the proper diagnostics
ok 774 - domain_type_is(schema, domain, schema, type, desc) should pass
ok 775 - domain_type_is(schema, domain, schema, type, desc) should have the proper description
ok 776 - domain_type_is(schema, domain, schema, type, desc) should have the proper diagnostics
ok 777 - domain_type_is(schema, domain, schema, type) should pass
ok 778 - domain_type_is(schema, domain, schema, type) should have the proper description
ok 779 - domain_type_is(schema, domain, schema, type) should have the proper diagnostics
ok 780 - domain_type_is(schema, domain, schema, type, desc) fail should fail
ok 781 - domain_type_is(schema, domain, schema, type, desc) fail should have the proper description
ok 782 - domain_type_is(schema, domain, schema, type, desc) fail should have the proper diagnostics
ok 783 - domain_type_is(schema, nondomain, schema, type, desc) should fail
ok 784 - domain_type_is(schema, nondomain, schema, type, desc) should have the proper description
ok 785 - domain_type_is(schema, nondomain, schema, type, desc) should have the proper diagnostics
ok 786 - domain_type_is(schema, type, schema, type, desc) fail should fail
ok 787 - domain_type_is(schema, type, schema, type, desc) fail should have the proper description
ok 788 - domain_type_is(schema, type, schema, type, desc) fail should have the proper diagnostics
ok 789 - domain_type_is(schema, domain, type, desc) should pass
ok 790 - domain_type_is(schema, domain, type, desc) should have the proper description
ok 791 - domain_type_is(schema, domain, type, desc) should have the proper diagnostics
ok 792 - domain_type_is(schema, domain, type) should pass
ok 793 - domain_type_is(schema, domain, type) should have the proper description
ok 794 - domain_type_is(schema, domain, type) should have the proper diagnostics
ok 795 - domain_type_is(schema, domain, type, desc) fail should fail
ok 796 - domain_type_is(schema, domain, type, desc) fail should have the proper description
ok 797 - domain_type_is(schema, domain, type, desc) fail should have the proper diagnostics
ok 798 - domain_type_is(schema, nondomain, type, desc) should fail
ok 799 - domain_type_is(schema, nondomain, type, desc) should have the proper description
ok 800 - domain_type_is(schema, nondomain, type, desc) should have the proper diagnostics
ok 801 - domain_type_is(schema, type, type, desc) fail should fail
ok 802 - domain_type_is(schema, type, type, desc) fail should have the proper description
ok 803 - domain_type_is(schema, type, type, desc) fail should have the proper diagnostics
ok 804 - domain_type_is(domain, type, desc) should pass
ok 805 - domain_type_is(domain, type, desc) should have the proper description
ok 806 - domain_type_is(domain, type, desc) should have the proper diagnostics
ok 807 - domain_type_is(domain, type) should pass
ok 808 - domain_type_is(domain, type) should have the proper description
ok 809 - domain_type_is(domain, type) should have the proper diagnostics
ok 810 - domain_type_is(domain, type, desc) fail should fail
ok 811 - domain_type_is(domain, type, desc) fail should have the proper description
ok 812 - domain_type_is(domain, type, desc) fail should have the proper diagnostics
ok 813 - domain_type_is(nondomain, type, desc) should fail
ok 814 - domain_type_is(nondomain, type, desc) should have the proper description
ok 815 - domain_type_is(nondomain, type, desc) should have the proper diagnostics
ok 816 - domain_type_is(type, type, desc) fail should fail
ok 817 - domain_type_is(type, type, desc) fail should have the proper description
ok 818 - domain_type_is(type, type, desc) fail should have the proper diagnostics
ok 819 - domain_type_isnt(schema, domain, schema, type, desc) should pass
ok 820 - domain_type_isnt(schema, domain, schema, type, desc) should have the proper description
ok 821 - domain_type_isnt(schema, domain, schema, type, desc) should have the proper diagnostics
ok 822 - domain_type_isnt(schema, domain, schema, type) should pass
ok 823 - domain_type_isnt(schema, domain, schema, type) should have the proper description
ok 824 - domain_type_isnt(schema, domain, schema, type) should have the proper diagnostics
ok 825 - domain_type_isnt(schema, domain, schema, type, desc) fail should fail
ok 826 - domain_type_isnt(schema, domain, schema, type, desc) fail should have the proper description
ok 827 - domain_type_isnt(schema, domain, schema, type, desc) fail should have the proper diagnostics
ok 828 - domain_type_isnt(schema, nondomain, schema, type, desc) should fail
ok 829 - domain_type_isnt(schema, nondomain, schema, type, desc) should have the proper description
ok 830 - domain_type_isnt(schema, nondomain, schema, type, desc) should have the proper diagnostics
ok 831 - domain_type_isnt(schema, type, schema, type, desc) should fail
ok 832 - domain_type_isnt(schema, type, schema, type, desc) should have the proper description
ok 833 - domain_type_isnt(schema, type, schema, type, desc) should have the proper diagnostics
ok 834 - domain_type_isnt(schema, domain, type, desc) should pass
ok 835 - domain_type_isnt(schema, domain, type, desc) should have the proper description
ok 836 - domain_type_isnt(schema, domain, type, desc) should have the proper diagnostics
ok 837 - domain_type_isnt(schema, domain, type) should pass
ok 838 - domain_type_isnt(schema, domain, type) should have the proper description
ok 839 - domain_type_isnt(schema, domain, type) should have the proper diagnostics
ok 840 - domain_type_isnt(schema, domain, type, desc) fail should fail
ok 841 - domain_type_isnt(schema, domain, type, desc) fail should have the proper description
ok 842 - domain_type_isnt(schema, domain, type, desc) fail should have the proper diagnostics
ok 843 - domain_type_isnt(schema, nondomain, type, desc) should fail
ok 844 - domain_type_isnt(schema, nondomain, type, desc) should have the proper description
ok 845 - domain_type_isnt(schema, nondomain, type, desc) should have the proper diagnostics
ok 846 - domain_type_isnt(schema, type, type, desc) should fail
ok 847 - domain_type_isnt(schema, type, type, desc) should have the proper description
ok 848 - domain_type_isnt(schema, type, type, desc) should have the proper diagnostics
ok 849 - domain_type_isnt(domain, type, desc) should pass
ok 850 - domain_type_isnt(domain, type, desc) should have the proper description
ok 851 - domain_type_isnt(domain, type, desc) should have the proper diagnostics
ok 852 - domain_type_isnt(domain, type) should pass
ok 853 - domain_type_isnt(domain, type) should have the proper description
ok 854 - domain_type_isnt(domain, type) should have the proper diagnostics
ok 855 - domain_type_isnt(domain, type, desc) fail should fail
ok 856 - domain_type_isnt(domain, type, desc) fail should have the proper description
ok 857 - domain_type_isnt(domain, type, desc) fail should have the proper diagnostics
ok 858 - domain_type_isnt(nondomain, type, desc) should fail
ok 859 - domain_type_isnt(nondomain, type, desc) should have the proper description
ok 860 - domain_type_isnt(nondomain, type, desc) should have the proper diagnostics
ok 861 - domain_type_isnt(type, type, desc) should fail
ok 862 - domain_type_isnt(type, type, desc) should have the proper description
ok 863 - domain_type_isnt(type, type, desc) should have the proper diagnostics
ok 864 - has_relation(non-existent relation) should fail
ok 865 - has_relation(non-existent relation) should have the proper description
ok 866 - has_relation(non-existent relation) should have the proper diagnostics
ok 867 - has_relation(non-existent schema, tab) should fail
ok 868 - has_relation(non-existent schema, tab) should have the proper description
ok 869 - has_relation(non-existent schema, tab) should have the proper diagnostics
ok 870 - has_relation(sch, non-existent relation, desc) should fail
ok 871 - has_relation(sch, non-existent relation, desc) should have the proper description
ok 872 - has_relation(sch, non-existent relation, desc) should have the proper diagnostics
ok 873 - has_relation(tab, desc) should pass
ok 874 - has_relation(tab, desc) should have the proper description
ok 875 - has_relation(tab, desc) should have the proper diagnostics
ok 876 - has_relation(sch, tab, desc) should pass
ok 877 - has_relation(sch, tab, desc) should have the proper description
ok 878 - has_relation(sch, tab, desc) should have the proper diagnostics
ok 879 - has_relation(sch, view, desc) should pass
ok 880 - has_relation(sch, view, desc) should have the proper description
ok 881 - has_relation(sch, view, desc) should have the proper diagnostics
ok 882 - has_relation(type, desc) should pass
ok 883 - has_relation(type, desc) should have the proper description
ok 884 - has_relation(type, desc) should have the proper diagnostics
ok 885 - hasnt_relation(non-existent relation) should pass
ok 886 - hasnt_relation(non-existent relation) should have the proper description
ok 887 - hasnt_relation(non-existent relation) should have the proper diagnostics
ok 888 - hasnt_relation(non-existent schema, tab) should pass
ok 889 - hasnt_relation(non-existent schema, tab) should have the proper description
ok 890 - hasnt_relation(non-existent schema, tab) should have the proper diagnostics
ok 891 - hasnt_relation(sch, non-existent tab, desc) should pass
ok 892 - hasnt_relation(sch, non-existent tab, desc) should have the proper description
ok 893 - hasnt_relation(sch, non-existent tab, desc) should have the proper diagnostics
ok 894 - hasnt_relation(tab, desc) should fail
ok 895 - hasnt_relation(tab, desc) should have the proper description
ok 896 - hasnt_relation(tab, desc) should have the proper diagnostics
ok 897 - hasnt_relation(sch, tab, desc) should fail
ok 898 - hasnt_relation(sch, tab, desc) should have the proper description
ok 899 - hasnt_relation(sch, tab, desc) should have the proper diagnostics
ok 900 - has_foreign_table(non-existent table) should fail
ok 901 - has_foreign_table(non-existent table) should have the proper description
ok 902 - has_foreign_table(non-existent table) should have the proper diagnostics
ok 903 - has_foreign_table(non-existent schema, tab) should fail
ok 904 - has_foreign_table(non-existent schema, tab) should have the proper description
ok 905 - has_foreign_table(non-existent schema, tab) should have the proper diagnostics
ok 906 - has_foreign_table(non-existent table, desc) should fail
ok 907 - has_foreign_table(non-existent table, desc) should have the proper description
ok 908 - has_foreign_table(non-existent table, desc) should have the proper diagnostics
ok 909 - has_foreign_table(sch, non-existent table, desc) should fail
ok 910 - has_foreign_table(sch, non-existent table, desc) should have the proper description
ok 911 - has_foreign_table(sch, non-existent table, desc) should have the proper diagnostics
ok 912 - has_foreign_table(tab, desc) should pass
ok 913 - has_foreign_table(tab, desc) should have the proper description
ok 914 - has_foreign_table(tab, desc) should have the proper diagnostics
ok 915 - has_foreign_table(sch, tab, desc) should pass
ok 916 - has_foreign_table(sch, tab, desc) should have the proper description
ok 917 - has_foreign_table(sch, tab, desc) should have the proper diagnostics
ok 918 - has_foreign_table(sch, view, desc) should fail
ok 919 - has_foreign_table(sch, view, desc) should have the proper description
ok 920 - has_foreign_table(sch, view, desc) should have the proper diagnostics
ok 921 - has_foreign_table(type, desc) should fail
ok 922 - has_foreign_table(type, desc) should have the proper description
ok 923 - has_foreign_table(type, desc) should have the proper diagnostics
ok 924 - hasnt_foreign_table(non-existent table) should pass
ok 925 - hasnt_foreign_table(non-existent table) should have the proper description
ok 926 - hasnt_foreign_table(non-existent table) should have the proper diagnostics
ok 927 - hasnt_foreign_table(non-existent schema, tab) should pass
ok 928 - hasnt_foreign_table(non-existent schema, tab) should have the proper description
ok 929 - hasnt_foreign_table(non-existent schema, tab) should have the proper diagnostics
ok 930 - hasnt_foreign_table(non-existent table, desc) should pass
ok 931 - hasnt_foreign_table(non-existent table, desc) should have the proper description
ok 932 - hasnt_foreign_table(non-existent table, desc) should have the proper diagnostics
ok 933 - hasnt_foreign_table(sch, non-existent tab, desc) should pass
ok 934 - hasnt_foreign_table(sch, non-existent tab, desc) should have the proper description
ok 935 - hasnt_foreign_table(sch, non-existent tab, desc) should have the proper diagnostics
ok 936 - hasnt_foreign_table(tab, desc) should fail
ok 937 - hasnt_foreign_table(tab, desc) should have the proper description
ok 938 - hasnt_foreign_table(tab, desc) should have the proper diagnostics
ok 939 - hasnt_foreign_table(sch, tab, desc) should fail
ok 940 - hasnt_foreign_table(sch, tab, desc) should have the proper description
ok 941 - hasnt_foreign_table(sch, tab, desc) should have the proper diagnostics
ok 942 - has_materialized_view(non-existent materialized_view) should fail
ok 943 - has_materialized_view(non-existent materialized_view) should have the proper description
ok 944 - has_materialized_view(non-existent materialized_view) should have the proper diagnostics
ok 945 - has_materialized_view(non-existent materialized_view, desc) should fail
ok 946 - has_materialized_view(non-existent materialized_view, desc) should have the proper description
ok 947 - has_materialized_view(non-existent materialized_view, desc) should have the proper diagnostics
ok 948 - has_materialized_view(sch, non-existent materialized_view, desc) should fail
ok 949 - has_materialized_view(sch, non-existent materialized_view, desc) should have the proper description
ok 950 - has_materialized_view(sch, non-existent materialized_view, desc) should have the proper diagnostics
ok 951 - has_materialized_view(materialized_view, desc) should pass
ok 952 - has_materialized_view(materialized_view, desc) should have the proper description
ok 953 - has_materialized_view(materialized_view, desc) should have the proper diagnostics
ok 954 - has_materialized_view(sch, materialized_view, desc) should pass
ok 955 - has_materialized_view(sch, materialized_view, desc) should have the proper description
ok 956 - has_materialized_view(sch, materialized_view, desc) should have the proper diagnostics
ok 957 - hasnt_materialized_view(non-existent materialized_view) should pass
ok 958 - hasnt_materialized_view(non-existent materialized_view) should have the proper description
ok 959 - hasnt_materialized_view(non-existent materialized_view) should have the proper diagnostics
ok 960 - hasnt_materialized_view(non-existent materialized_view, desc) should pass
ok 961 - hasnt_materialized_view(non-existent materialized_view, desc) should have the proper description
ok 962 - hasnt_materialized_view(non-existent materialized_view, desc) should have the proper diagnostics
ok 963 - hasnt_materialized_view(sch, non-existent materialized_view, desc) should pass
ok 964 - hasnt_materialized_view(sch, non-existent materialized_view, desc) should have the proper description
ok 965 - hasnt_materialized_view(sch, non-existent materialized_view, desc) should have the proper diagnostics
ok 966 - hasnt_materialized_view(materialized_view, desc) should fail
ok 967 - hasnt_materialized_view(materialized_view, desc) should have the proper description
ok 968 - hasnt_materialized_view(materialized_view, desc) should have the proper diagnostics
ok 969 - hasnt_materialized_view(sch, materialized_view, desc) should fail
ok 970 - hasnt_materialized_view(sch, materialized_view, desc) should have the proper description
ok 971 - hasnt_materialized_view(sch, materialized_view, desc) should have the proper diagnostics
ok 972 - is_partitioned(non-existent part) should fail
ok 973 - is_partitioned(non-existent part) should have the proper description
ok 974 - is_partitioned(non-existent part) should have the proper diagnostics
ok 975 - is_partitioned(non-existent part, desc) should fail
ok 976 - is_partitioned(non-existent part, desc) should have the proper description
ok 977 - is_partitioned(non-existent part, desc) should have the proper diagnostics
ok 978 - is_partitioned(sch, non-existent part, desc) should fail
ok 979 - is_partitioned(sch, non-existent part, desc) should have the proper description
ok 980 - is_partitioned(sch, non-existent part, desc) should have the proper diagnostics
ok 981 - is_partitioned(sch, part, desc) should pass
ok 982 - is_partitioned(sch, part, desc) should have the proper description
ok 983 - is_partitioned(sch, part, desc) should have the proper diagnostics
ok 984 - is_partitioned(sch, part) should pass
ok 985 - is_partitioned(sch, part) should have the proper description
ok 986 - is_partitioned(sch, part) should have the proper diagnostics
ok 987 - is_partitioned(part, desc) should pass
ok 988 - is_partitioned(part, desc) should have the proper description
ok 989 - is_partitioned(part, desc) should have the proper diagnostics
ok 990 - is_partitioned(part) should pass
ok 991 - is_partitioned(part) should have the proper description
ok 992 - is_partitioned(part) should have the proper diagnostics
ok 993 - isnt_partitioned(non-existent part) should pass
ok 994 - isnt_partitioned(non-existent part) should have the proper description
ok 995 - isnt_partitioned(non-existent part) should have the proper diagnostics
ok 996 - isnt_partitioned(non-existent part, desc) should pass
ok 997 - isnt_partitioned(non-existent part, desc) should have the proper description
ok 998 - isnt_partitioned(non-existent part, desc) should have the proper diagnostics
ok 999 - isnt_partitioned(sch, non-existent part, desc) should pass
ok 1000 - isnt_partitioned(sch, non-existent part, desc) should have the proper description
ok 1001 - isnt_partitioned(sch, non-existent part, desc) should have the proper diagnostics
ok 1002 - isnt_partitioned(sch, part, desc) should fail
ok 1003 - isnt_partitioned(sch, part, desc) should have the proper description
ok 1004 - isnt_partitioned(sch, part, desc) should have the proper diagnostics
ok 1005 - isnt_partitioned(sch, part) should fail
ok 1006 - isnt_partitioned(sch, part) should have the proper description
ok 1007 - isnt_partitioned(sch, part) should have the proper diagnostics
ok 1008 - isnt_partitioned(part, desc) should fail
ok 1009 - isnt_partitioned(part, desc) should have the proper description
ok 1010 - isnt_partitioned(part, desc) should have the proper diagnostics
ok 1011 - isnt_partitioned(part) should fail
ok 1012 - isnt_partitioned(part) should have the proper description
ok 1013 - isnt_partitioned(part) should have the proper diagnostics
|