[Pharo-users] [Call for Topics] Pharo TechTalks

2019-05-23 Thread Marcus Denker
Hi,

Last year we had some “Pharo Tech Talks”… we want to start that again.

Dates:

June 20
July 18
Sept 19
Oct 17
Nov 21
Dec 12

The time would be 17h local time (Berlin/Paris). 

-> If you want to “drive” one of those dates —> send me a mail.
-> Dates are flexible, if you want to do a tech talk you can propose another 
date, too
-> For the dates without special talk, I think I will do a “lets fix something 
small” session as the default.
(with screen sharing, while the people on Discord help and discuss how to 
do it)

What can it be?
-> you could present your project
-> you could give a “lecture”
-> you could do some tutorial
-> You could moderate a audio chat around a topic

If someone wants to do something, send me a mail. I will for now already add 
these dates to the events list at
https://association.pharo.org/events


Marcus


[Pharo-users] All the little cute icons

2019-05-23 Thread Kasper Osterbye
I was wondering about all the cute icons I see in the browser, Iceberg,
etc. I assume they all are intended to mean something, but where is the
documentation of that?

best, Kasper


[Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Pierce Ng
Hi all,

I have a testing class that is sub-subclass of TestCase, i.e., the class
hierarchy looks like this:

  TestCase
ExistingTestingClass
  MyNewTestingClass

How do I get TestRunner to run MyNewTestingClass's tests, as well as
ExistingTestingClass's tests in the context of MyNewTestingClass?

Pierce



[Pharo-users] Discord Recaptcha

2019-05-23 Thread Pierce Ng
Hi all,

I just tried to login to Discord after a few weeks away. I cannot get
past Google's recaptcha - it kept showing me super grainy pictures of
road scenes from which I was supposed to pick out the ones with cars
(apparently without success).

I have set up 2FA for Discord and don't remember having to deal with
recaptcha previously.

Is this something the Pharo Discord admins can configure? Like, disable
recaptcha totally?

TIA. 

Pierce



Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Tim Mackinnon
Hi Pierce - not sure I understand what you are trying to do - I tend to run all 
tests in a package which it cmd-t in calypso, but I sometimes need to run lots 
of disjoint tests, so I created a fake test and overrode the suite method eg:

TestCase subclass: #AllExercismTests
instanceVariableNames: ''
classVariableNames: ''
package: ‘ExercismSystemTests'


suite
^ self allExercismTests
inject: TestSuite new
into: [ :suite :test | suite addTest: test 
buildSuiteFromSelectors ]

To get the tests I use this helper method - but do whatever you need if its not 
package based (thinking to myself, I could modify this to get my tests from the 
baseline)

allExercismTestsFor: packagesNameList
"gather all the TestCases in the Execercsim package"

^ packagesNameList
inject: Set new
into: [ :finalResult :pkgName | 
(RPackageOrganizer default packageNamed: pkgName) 
packages
inject: finalResult
into: [ :result :pkg | 
result
addAll: (pkg classes select: [ 
:c | c isTestCase ]);
yourself ] ]


And then have a fake test so you can click the green orb:

testAll
"Create a suite to eaily run all the tests - this is a stub that gives 
a browser button 
to easily click on to run all the composite tests"

^true 


> On 23 May 2019, at 11:16, Pierce Ng  wrote:
> 
> Hi all,
> 
> I have a testing class that is sub-subclass of TestCase, i.e., the class
> hierarchy looks like this:
> 
>  TestCase
>ExistingTestingClass
>  MyNewTestingClass
> 
> How do I get TestRunner to run MyNewTestingClass's tests, as well as
> ExistingTestingClass's tests in the context of MyNewTestingClass?
> 
> Pierce
> 




Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Cyril Ferlicot
On Thu, May 23, 2019 at 12:17 PM Pierce Ng  wrote:
>
> Hi all,
>
> I have a testing class that is sub-subclass of TestCase, i.e., the class
> hierarchy looks like this:
>
>   TestCase
> ExistingTestingClass
>   MyNewTestingClass
>
> How do I get TestRunner to run MyNewTestingClass's tests, as well as
> ExistingTestingClass's tests in the context of MyNewTestingClass?
>

Hi,

Currently, to inherit tests you need to override
#shouldInheritSelectors to return true.

> Pierce
>


-- 
Cyril Ferlicot
https://ferlicot.fr



Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Tim Mackinnon
Oh yeah - I forgot about that one too… and another developer wastes time on 
that strange decision (we really must get it changed, its just not what you 
expect)

> On 23 May 2019, at 13:14, Cyril Ferlicot  wrote:
> 
> 
> Currently, to inherit tests you need to override
> #shouldInheritSelectors to return true.
> 
>> Pierce
>> 
> 
> 
> -- 
> Cyril Ferlicot
> https://ferlicot.fr
> 




Re: [Pharo-users] TestRunner to run superclass's tests

2019-05-23 Thread Pierce Ng
On Thu, May 23, 2019 at 02:14:08PM +0200, Cyril Ferlicot wrote:
> Currently, to inherit tests you need to override
> #shouldInheritSelectors to return true.

Thank you Cyril. 




[Pharo-users] RealEstate

2019-05-23 Thread Hilaire
Hi,

I would like new window to be placed in free space of the World.

(I try to fix this usability concern
https://bugs.launchpad.net/drgeo/+bug/1821501)

I took a look at RealEstate but without success.

Any though on the matter

Thanks

-- 
Dr. Geo
http://drgeo.eu