"Seaside Core Tests" not loadable if "Seaside Development" is not loaded

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

"Seaside Core Tests" not loadable if "Seaside Development" is not loaded

Gabriel Cotelli
The configuration map Seaside Core Tests can't be loaded if Seaside Development is not loaded (but Seaside Core is loaded).

I get the following error:

Loading the configuration map Seaside Core Tests V 8.5.0  [194]...
renderFigureOn: html
html heading level2; with: '<figure>'.
html figure: [
html legend: 'The Profiler Icon'.
html space.
html image url: 
compiler error "undefined"
--> WAToolFiles / #profilerPng; altText: 'profiler' ]

Error: 357   Cannot complete the load because WAHtml5ElementsTest>>#renderFigureOn:(30/12/2010 10:11:37 a.m.) does not compile.
NOTE: If you reload after executing:
   EmImageBuilder cancelIfMethodsDoNotCompile: false
methods which do not compile will be deleted.
Failed trying to load Seaside Core Tests V 8.5.0  [194].

Probably some test needs to be moved to Seaside Development Tests.

Regards,
Gabriel

--
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group.
To view this discussion on the web visit https://groups.google.com/d/msg/va-smalltalk/-/K2qzHypMGfEJ.
To post to this group, send email to [hidden email].
To unsubscribe from this group, send email to [hidden email].
For more options, visit this group at http://groups.google.com/group/va-smalltalk?hl=en.
Reply | Threaded
Open this post in threaded view
|

Re: "Seaside Core Tests" not loadable if "Seaside Development" is not loaded

John O'Keefe
Gabriel -

This is a problem in the base Seaside code for 3.0.5.  I have opened Seaside Issue 691.

The workaround (and the fix I will submit to Seaside) is to chose an icon from a prereq'ed app:

renderFigureOn: html
        html heading level2; with: '<figure>'.
        html figure: [
                html legend: 'A Sample Icon'.
                html space.
                html image url: WATestingFiles / #samplePng; altText: 'sample' ]

John