Example #1
0
 def _test(self):
     if len(self.add_values) == 0:
         test_pass.__init__(self)
Example #2
0
 def _test(self):
     if pd.notnull(self.col).all():
         test_pass.__init__(self)
Example #3
0
 def _test(self):
     if self.max <= self.upper:
         test_pass.__init__(self)
Example #4
0
 def _test(self):
     if self.col_len == self.len_uni_values:
         test_pass.__init__(self)
Example #5
0
 def _test(self):
     if self.min >= self.lower:
         test_pass.__init__(self)
Example #6
0
 def _test(self):
     if self.min >= self.lower and self.max < self.upper:
         test_pass.__init__(self)
Example #7
0
 def _test(self):
     if self.col_type == self.expc_type:
         test_pass.__init__(self)
     elif np.issubdtype(self.col_type, self.expc_type):
         test_pass.__init__(self)
Example #8
0
 def _test(self):
     if len(self.extra_cols) == 0:
         test_pass.__init__(self)
Example #9
0
 def _test(self):
     if len(self.missing_cols) == 0:
         test_pass.__init__(self)
Example #10
0
    def _test(self):

        if (self.col == False).any():
            test_pass.__init__(self)
Example #11
0
    def _test(self):

        if self.col.any():
            test_pass.__init__(self)